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