Filesystem file manipulation. More...
Public Member Functions | |
| boolean | Exists (string path) |
| Determines if the file at the path exists. | |
| string | ReadAllText (string path) |
| Reads all text from the given filename. | |
| boolean | WriteAllText (string path, string text) |
| Writes all text to the given filename. | |
Filesystem file manipulation.
| boolean File.Exists | ( | string | path | ) |
Determines if the file at the path exists.
| path | The path of the file to check for existence. |
| string File.ReadAllText | ( | string | path | ) |
Reads all text from the given filename.
| path | The path of the file to read. |
| boolean File.WriteAllText | ( | string | path, |
| string | text ) |
Writes all text to the given filename.
| path | The path of the file to read. |
| text | The text to write to the file. |