| DirectoryCreate Method |
Creates a directory at the specified path.
Namespace:
Galactic.FileSystem
Assembly:
Galactic.FileSystem (in Galactic.FileSystem.dll) Version: 1.3.0.499 (1.3.0.499)
Syntax public static bool Create(
string path
)
Public Shared Function Create (
path As String
) As Boolean
public:
static bool Create(
String^ path
)
static member Create :
path : string -> bool
Parameters
- path
- Type: SystemString
The path of the directory to create.
Return Value
Type:
BooleanTrue if the directory was created or already exists.
False if an error occured and the directory could not be created.
See Also