FileInfoOpen Method (FileMode, FileSystemRights, FileShare) |
[AlphaFS] Opens a file in 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 FileStream Open(
FileMode mode,
FileSystemRights rights,
FileShare share
)
Public Function Open (
mode As FileMode,
rights As FileSystemRights,
share As FileShare
) As FileStream
public:
FileStream^ Open(
FileMode mode,
FileSystemRights rights,
FileShare share
)
member Open :
mode : FileMode *
rights : FileSystemRights *
share : FileShare -> FileStream
Parameters
- mode
- Type: System.IOFileMode
A FileMode constant specifying the mode (for example, Open or Append) in which to open the file. - rights
- Type: System.Security.AccessControlFileSystemRights
A FileSystemRights 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 along with additional options. - share
- Type: System.IOFileShare
A FileShare constant specifying the type of access other FileStream objects have to this file.
Return Value
Type:
FileStreamA
FileStream object opened with the specified mode, access, and sharing options.
See Also