FileOpen Method (String, FileMode, FileAccess, FileShare, ExtendedFileAttributes, PathFormat) |
[AlphaFS] Opens a
FileStream on the specified path, having the specified mode with read, write, or read/write access
and the specified sharing option.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public static FileStream Open(
string path,
FileMode mode,
FileAccess access,
FileShare share,
ExtendedFileAttributes extendedAttributes,
PathFormat pathFormat
)
Public Shared Function Open (
path As String,
mode As FileMode,
access As FileAccess,
share As FileShare,
extendedAttributes As ExtendedFileAttributes,
pathFormat As PathFormat
) As FileStream
public:
static FileStream^ Open(
String^ path,
FileMode mode,
FileAccess access,
FileShare share,
ExtendedFileAttributes extendedAttributes,
PathFormat pathFormat
)
static member Open :
path : string *
mode : FileMode *
access : FileAccess *
share : FileShare *
extendedAttributes : ExtendedFileAttributes *
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.
- access
- Type: System.IOFileAccess
A FileAccess value that specifies the operations that can be performed on the file. - share
- Type: System.IOFileShare
A FileShare value specifying the type of access other threads have to the file. - extendedAttributes
- Type: Alphaleonis.Win32.FilesystemExtendedFileAttributes
The extended attributes. - pathFormat
- Type: Alphaleonis.Win32.FilesystemPathFormat
Indicates the format of the path parameter(s).
Return Value
Type:
FileStream
A
FileStream on the specified path, having the specified mode with read, write, or read/write access and the
specified sharing option.
See Also