DirectoryCreateDirectory Method (String) |
Creates all directories and subdirectories in the specified path unless they already exist.
Namespace:
Alphaleonis.Win32.Filesystem
Assembly:
AlphaFS (in AlphaFS.dll) Version: 2.2
Syntax public static DirectoryInfo CreateDirectory(
string path
)
Public Shared Function CreateDirectory (
path As String
) As DirectoryInfo
public:
static DirectoryInfo^ CreateDirectory(
String^ path
)
static member CreateDirectory :
path : string -> DirectoryInfo
Parameters
- path
- Type: SystemString
The directory to create.
Return Value
Type:
DirectoryInfoAn object that represents the directory at the specified path. This object is returned regardless of whether a directory at the specified path already exists.
Exceptions See Also