FileInfoOpen Method (FileMode, FileAccess) |
Opens a file in the specified mode with read, write, or read/write access.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public FileStream Open(
FileMode mode,
FileAccess access
)
Public Function Open (
mode As FileMode,
access As FileAccess
) As FileStream
public:
FileStream^ Open(
FileMode mode,
FileAccess access
)
member Open :
mode : FileMode *
access : FileAccess -> FileStream
Parameters
- mode
- Type: System.IOFileMode
A FileMode constant specifying the mode (for example, Open or Append) in which to open the file. - access
- Type: System.IOFileAccess
A FileAccess constant specifying whether to open the file with Read, Write, or ReadWrite file access.
Return Value
Type:
FileStreamA
FileStream object opened in the specified mode and access, and unshared.
See Also