DirectoryInfoCreateSubdirectory Method (String, Boolean) |
[AlphaFS] Creates a subdirectory or subdirectories on the specified path. The specified path can be relative to this instance of the
DirectoryInfo class.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public DirectoryInfo CreateSubdirectory(
string path,
bool compress
)
Public Function CreateSubdirectory (
path As String,
compress As Boolean
) As DirectoryInfo
public:
DirectoryInfo^ CreateSubdirectory(
String^ path,
bool compress
)
member CreateSubdirectory :
path : string *
compress : bool -> DirectoryInfo
Parameters
- path
- Type: SystemString
The specified path. This cannot be a different disk volume. - compress
- Type: SystemBoolean
When compresses the directory.
Return Value
Type:
DirectoryInfoThe last directory specified in
path.
Remarks
Any and all directories specified in path are created, unless some part of path is invalid.
The path parameter specifies a directory path, not a file path.
If the subdirectory already exists, this method does nothing.
See Also