|
FilePathCopyDirectoryPermissions Method
|
Copies the permissions of the directory at the given sourcePath
to the directory at the given targetPath.
Namespace: GSF.IOAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.258-beta+f8b6aa3dbfe0b4cc2b0b0760dd5d2a3dd4f59d09
Syntaxpublic static void CopyDirectoryPermissions(
string sourcePath,
string targetPath
)
Public Shared Sub CopyDirectoryPermissions (
sourcePath As String,
targetPath As String
)
public:
static void CopyDirectoryPermissions(
String^ sourcePath,
String^ targetPath
)
static member CopyDirectoryPermissions :
sourcePath : string *
targetPath : string -> unit GSF.IO.FilePath.CopyDirectoryPermissions = function(sourcePath, targetPath);
View SourceParameters
- sourcePath String
- The path to the directory from which to copy permissions.
- targetPath String
- The path to the directory to which to apply permissions.
See Also