FileOpen Method (String, FileMode, PathFormat) |
[AlphaFS] Opens a
FileStream on the specified path with read/write access.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public static FileStream Open(
string path,
FileMode mode,
PathFormat pathFormat
)
Public Shared Function Open (
path As String,
mode As FileMode,
pathFormat As PathFormat
) As FileStream
public:
static FileStream^ Open(
String^ path,
FileMode mode,
PathFormat pathFormat
)
static member Open :
path : string *
mode : FileMode *
pathFormat : PathFormat -> 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.
- pathFormat
- Type: Alphaleonis.Win32.FilesystemPathFormat
Indicates the format of the path parameter(s).
Return Value
Type:
FileStreamA
FileStream opened in the specified mode and path, with read/write access and not shared.
See Also