OpenMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates how to open a file when calling file-access functions.
public enum class OpenMode
public enum OpenMode
type OpenMode =
Public Enum OpenMode
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Input | 1 | File opened for read access. |
Output | 2 | File opened for write access. |
Random | 4 | File opened for random access. |
Append | 8 | File opened to append to it. Default. |
Binary | 32 | File opened for binary access. |
Remarks
When you call file access-related functions, you can use enumeration members in your code instead of the actual values.
The OpenMode
enumeration defines constants used to set file access modes. The following table lists the OpenMode
enumeration members.
Input
, Output
, and Append
are used when sequentially accessing files, such as text files, whereas Binary
is used for binary file access and Random
for random file access. For examples, see the FileOpen method.
When sequentially accessing a file, you cannot change its data. You can read the data, append to it, or overwrite it with new data. If you open it for input, the contents of the file will be overwritten, even if you do not directly write to the file.
When performing file I/O operations, the My.Computer.FileSystem
object provides better performance and ease of use than earlier file I/O methods. For more information, see FileSystem object.