| FileCreate Method |
Creates or overwrites a file at the supplied path location.
Namespace:
Galactic.FileSystem
Assembly:
Galactic.FileSystem (in Galactic.FileSystem.dll) Version: 1.3.0.499 (1.3.0.499)
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 to the location to create the file at.
Return Value
Type:
FileStreamA FileStream of the file created or null if an error occurred.
See Also