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