复制具有原始权限的文件
Posted
技术标签:
【中文标题】复制具有原始权限的文件【英文标题】:Copy a file with its original permissions 【发布时间】:2012-02-28 03:32:26 【问题描述】:当使用 File.Copy() 方法时,文件被复制到新目录,但是它失去了原来的权限。
有没有办法复制文件以免失去权限?
【问题讨论】:
文件没有继承父文件夹权限是吗? 如果我使用 File.Copy() 没有任何权限应用于新文件。使用Alex's solution 有效。 【参考方案1】:Alex 的回答,针对 .NET Core 3.1(实际上是大多数 .NET)进行了更新:
var sourceFileInfo = new FileInfo(sourcePath);
var destinationFileInfo = new FileInfo(destinationPath);
// Copy the file
sourceFileInfo.CopyTo(destinationPath, true); // allow overwrite of the destination
// Update the file attributes
destinationFileInfo.Attributes = sourceFileInfo.Attributes
【讨论】:
【参考方案2】:我相信你可以这样做:
const string sourcePath = @"c:\test.txt";
const string destinationPath = @"c:\test2.txt"
File.Copy(sourcePath, destinationPath);
FileInfo sourceFileInfo = new FileInfo(sourcePath);
FileInfo destinationFileInfo = new FileInfo(destinationPath);
FileSecurity sourceFileSecurity = sourceFileInfo.GetAccessControl();
sourceFileSecurity.SetAccessRuleProtection(true, true);
destinationFileInfo.SetAccessControl(sourceFileSecurity);
【讨论】:
以上是关于复制具有原始权限的文件的主要内容,如果未能解决你的问题,请参考以下文章