FileCreate Method (KernelTransaction, String, Int32, FileOptions, FileSecurity, PathFormat) |
Creates or overwrites the specified file, specifying a buffer size and a
FileOptions value that describes how to create or overwrite the file.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public static FileStream Create(
KernelTransaction transaction,
string path,
int bufferSize,
FileOptions options,
FileSecurity fileSecurity,
PathFormat pathFormat
)
Public Shared Function Create (
transaction As KernelTransaction,
path As String,
bufferSize As Integer,
options As FileOptions,
fileSecurity As FileSecurity,
pathFormat As PathFormat
) As FileStream
public:
static FileStream^ Create(
KernelTransaction^ transaction,
String^ path,
int bufferSize,
FileOptions options,
FileSecurity^ fileSecurity,
PathFormat pathFormat
)
static member Create :
transaction : KernelTransaction *
path : string *
bufferSize : int *
options : FileOptions *
fileSecurity : FileSecurity *
pathFormat : PathFormat -> FileStream
Parameters
- transaction
- Type: Alphaleonis.Win32.FilesystemKernelTransaction
The transaction. - path
- Type: SystemString
The name of the file. - bufferSize
- Type: SystemInt32
The number of bytes buffered for reads and writes to the file. - options
- Type: System.IOFileOptions
One of the FileOptions values that describes how to create or overwrite the file. - fileSecurity
- Type: System.Security.AccessControlFileSecurity
One of the FileSecurity values that determines the access control and audit security for the file.
- pathFormat
- Type: Alphaleonis.Win32.FilesystemPathFormat
Indicates the format of the path parameter(s).
Return Value
Type:
FileStreamA new file with the specified buffer size, file options, and file security.
See Also