FileOpen Method (String, FileMode, FileSystemRights, FileShare, Int32, ExtendedFileAttributes, PathFormat) |
[AlphaFS] Opens a
FileStream on the specified path using the specified creation mode, read/write and sharing permission, and buffer size.
Namespace:
Alphaleonis.Win32.Filesystem
Assembly:
AlphaFS (in AlphaFS.dll) Version: 2.2
Syntax public static FileStream Open(
string path,
FileMode mode,
FileSystemRights rights,
FileShare share,
int bufferSize,
ExtendedFileAttributes extendedAttributes,
PathFormat pathFormat
)
Public Shared Function Open (
path As String,
mode As FileMode,
rights As FileSystemRights,
share As FileShare,
bufferSize As Integer,
extendedAttributes As ExtendedFileAttributes,
pathFormat As PathFormat
) As FileStream
public:
static FileStream^ Open(
String^ path,
FileMode mode,
FileSystemRights rights,
FileShare share,
int bufferSize,
ExtendedFileAttributes extendedAttributes,
PathFormat pathFormat
)
static member Open :
path : string *
mode : FileMode *
rights : FileSystemRights *
share : FileShare *
bufferSize : int *
extendedAttributes : ExtendedFileAttributes *
pathFormat : PathFormat -> FileStream
Parameters
- path
- Type: SystemString
The file to open. - mode
- Type: System.IOFileMode
A constant that determines how to open or create the file. - rights
- Type: System.Security.AccessControlFileSystemRights
A FileAccess value that specifies the operations that can be performed on the
file. - share
- Type: System.IOFileShare
A constant that determines how the file will be shared by processes. - bufferSize
- Type: SystemInt32
A positive Int32 value greater than 0 indicating the buffer size. The
default buffer size is 4096. - extendedAttributes
- Type: Alphaleonis.Win32.FilesystemExtendedFileAttributes
Extended attributes specifying additional options. - pathFormat
- Type: Alphaleonis.Win32.FilesystemPathFormat
Indicates the format of the path parameter.
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