Click or drag to resize

FileInfoOpen Method (FileMode, FileSystemRights)

[AlphaFS] Opens a file in the specified mode with read, write, or read/write access.

Namespace:  Alphaleonis.Win32.Filesystem
Assembly:  AlphaFS (in AlphaFS.dll) Version: 2.2
Syntax
public FileStream Open(
	FileMode mode,
	FileSystemRights rights
)

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.

Return Value

Type: FileStream
A FileStream object opened in the specified mode and access, and unshared.
See Also