Click or drag to resize

FileCreate Method (String, Int32, FileOptions)

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.Filesystem
Assembly:  AlphaFS (in AlphaFS.dll) Version: 2.2
Syntax
public static FileStream Create(
	string path,
	int bufferSize,
	FileOptions options
)

Parameters

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.

Return Value

Type: FileStream
A new file with the specified buffer size.
See Also