DirectoryCreateDirectoryTransacted Method (KernelTransaction, String, DirectorySecurity, PathFormat) |
[AlphaFS] Creates all the directories in the specified path, applying the specified Windows security.
Namespace:
Alphaleonis.Win32.Filesystem
Assembly:
AlphaFS (in AlphaFS.dll) Version: 2.2
Syntax public static DirectoryInfo CreateDirectoryTransacted(
KernelTransaction transaction,
string path,
DirectorySecurity directorySecurity,
PathFormat pathFormat
)
Public Shared Function CreateDirectoryTransacted (
transaction As KernelTransaction,
path As String,
directorySecurity As DirectorySecurity,
pathFormat As PathFormat
) As DirectoryInfo
public:
static DirectoryInfo^ CreateDirectoryTransacted(
KernelTransaction^ transaction,
String^ path,
DirectorySecurity^ directorySecurity,
PathFormat pathFormat
)
static member CreateDirectoryTransacted :
transaction : KernelTransaction *
path : string *
directorySecurity : DirectorySecurity *
pathFormat : PathFormat -> DirectoryInfo
Parameters
- transaction
- Type: Alphaleonis.Win32.FilesystemKernelTransaction
The transaction. - path
- Type: SystemString
The directory to create. - directorySecurity
- Type: System.Security.AccessControlDirectorySecurity
The access control to apply to 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 See Also