File Methods |
The File type exposes the following members.
Name | Description | |
---|---|---|
AppendAllText(String, String) |
Opens a file, appends the specified string to the file, and then closes the file. If the file does not exist, this method creates a file, writes the specified string to the file, then closes the file.
| |
AppendAllText(String, String, Boolean) |
Opens a file, appends the specified string to the file, and then closes the file. If the file does not exist, this method creates a file, writes the specified string to the file, then closes the file.
| |
AppendAllText(String, String, Encoding) |
Opens a file, appends the specified string to the file, and then closes the file. If the file does not exist, this method creates a file, writes the specified string to the file, then closes the file.
| |
AppendAllText(String, String, Encoding, Boolean) |
Opens a file, appends the specified string to the file, and then closes the file. If the file does not exist, this method creates a file, writes the specified string to the file, then closes the file.
| |
Copy(String, String) |
Copies an existing file to a new file.
| |
Copy(String, String, Boolean) |
Copies an existing file to a new file. Overwriting a file of the same name is allowed.
| |
Create |
Creates or overwrites a file in the specified path.
| |
CreateText |
Creates or opens a file for writing UTF-8 encoded text.
| |
Delete |
Deletes the specified file. An exception is not thrown if the specified file does not exist.
| |
Exists |
Determines whether the specified file exists.
| |
ExistsRelative |
Determines whether the specified file exists.
| |
GetAccessControl |
Gets a FileSecurity object that encapsulates the access control list (ACL) entries for a specified directory.
| |
GetFileObject |
Gets the file provider object for given path
| |
GetFileUrl |
Returns URL to file. If can be accessed directly then direct URL is generated else URL with GetFile page is generated.
| |
GetLastWriteTime |
Returns the date and time the specified file or directory was last written to.
| |
Move |
Moves a specified file to a new location, providing the option to specify a new file name.
| |
Open |
Opens a FileStream on the specified path, with the specified mode and access.
| |
OpenRead |
Opens an existing file for reading.
| |
OpenText |
Opens an existing UTF-8 encoded text file for reading.
| |
ReadAllBytes |
Opens a binary file, reads the contents of the file into a byte array, and then closes the file.
| |
ReadAllText(String) |
Opens a text file, reads all lines of the file, and then closes the file.
| |
ReadAllText(String, Encoding) |
Opens a text file, reads all lines of the file, and then closes the file.
| |
SetAttributes |
Sets the specified FileAttributes of the file on the specified path.
| |
SetLastWriteTime |
Sets the date and time that the specified file was last written to.
| |
SetLastWriteTimeUtc |
Sets the date and time, in coordinated universal time (UTC), that the specified file was last written to.
| |
WriteAllBytes |
Creates a new file, writes the specified byte array to the file, and then closes the file. If the target file already exists, it is overwritten.
| |
WriteAllText(String, String) |
Creates a new file, write the contents to the file, and then closes the file. If the target file already exists, it is overwritten.
| |
WriteAllText(String, String, Encoding) |
Creates a new file, write the contents to the file, and then closes the file. If the target file already exists, it is overwritten.
|