FileOpen Method (String, FileMode, FileAccess) |
Opens a
FileStream on the specified path, with the specified mode and access.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public static FileStream Open(
string path,
FileMode mode,
FileAccess access
)
Public Shared Function Open (
path As String,
mode As FileMode,
access As FileAccess
) As FileStream
public:
static FileStream^ Open(
String^ path,
FileMode mode,
FileAccess access
)
static member Open :
path : string *
mode : FileMode *
access : FileAccess -> FileStream
Parameters
- path
- Type: SystemString
The file to open. - mode
- Type: System.IOFileMode
A FileMode value that specifies whether a file is created if one does not exist, and determines whether the contents of existing files are retained or overwritten. - access
- Type: System.IOFileAccess
A FileAccess value that specifies the operations that can be performed on the file.
Return Value
Type:
FileStreamAn unshared
FileStream that provides access to the specified file, with the specified mode and access.
See Also