OpenMode
Enum
Definition
The enum used by commands to allow the user to specify how a file (or other item) should be opened.
public enum OpenMode
- Inheritance
-
OpenMode
Fields
| Add | This opens the file for appending (similar to FileMode.Append) |
| New | The file must be created new. If the file exists it is an error (similar to FileMode.CreateNew) |
| Overwrite | Creates a new file, if the file already exists it is overwritten (similar to FileMode.Create) |