FileCreate Method (String, Int32, PathFormat) |
Creates or overwrites the specified file.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public static FileStream Create(
string path,
int bufferSize,
PathFormat pathFormat
)
Public Shared Function Create (
path As String,
bufferSize As Integer,
pathFormat As PathFormat
) As FileStream
public:
static FileStream^ Create(
String^ path,
int bufferSize,
PathFormat pathFormat
)
static member Create :
path : string *
bufferSize : int *
pathFormat : PathFormat -> FileStream
Parameters
- path
- Type: SystemString
The name of the file. - bufferSize
- Type: SystemInt32
The number of bytes buffered for reads and writes to the file. - pathFormat
- Type: Alphaleonis.Win32.FilesystemPathFormat
Indicates the format of the path parameter(s).
Return Value
Type:
FileStream
A
FileStream with the specified buffer size that provides read/write access to the file specified in
path.
See Also