DirectoryCreateDirectory Method (String, String, Boolean, PathFormat) |
[AlphaFS] Creates a new directory, with the attributes of a specified template directory.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public static DirectoryInfo CreateDirectory(
string path,
string templatePath,
bool compress,
PathFormat pathFormat
)
Public Shared Function CreateDirectory (
path As String,
templatePath As String,
compress As Boolean,
pathFormat As PathFormat
) As DirectoryInfo
public:
static DirectoryInfo^ CreateDirectory(
String^ path,
String^ templatePath,
bool compress,
PathFormat pathFormat
)
static member CreateDirectory :
path : string *
templatePath : string *
compress : bool *
pathFormat : PathFormat -> DirectoryInfo
Parameters
- path
- Type: SystemString
The directory to create. - templatePath
- Type: SystemString
The path of the directory to use as a template when creating the new directory. - compress
- Type: SystemBoolean
When compresses the directory. - pathFormat
- Type: Alphaleonis.Win32.FilesystemPathFormat
Indicates the format of the path parameter(s).
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 Remarks MSDN: .NET 4+ Trailing spaces are removed from the end of the path and templatePath parameters before creating the directory.
See Also