FileCreate Method (String) |
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
)
Public Shared Function Create (
path As String
) As FileStream
public:
static FileStream^ Create(
String^ path
)
static member Create :
path : string -> FileStream
Parameters
- path
- Type: SystemString
The path and name of the file to create.
Return Value
Type:
FileStreamA
FileStream that provides read/write access to the file specified in
path.
See Also