BackupFileStream Constructor (String, FileMode) |
Initializes a new instance of the
BackupFileStream class with the specified path and creation mode.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public BackupFileStream(
string path,
FileMode mode
)
Public Sub New (
path As String,
mode As FileMode
)
public:
BackupFileStream(
String^ path,
FileMode mode
)
new :
path : string *
mode : FileMode -> BackupFileStream
Parameters
- path
- Type: SystemString
A relative or absolute path for the file that the current BackupFileStream object will encapsulate. - mode
- Type: System.IOFileMode
A FileMode constant that determines how to open or create the file.
Remarks The file will be opened for exclusive access for both reading and writing.
See Also