使用原始权限复制文件
本文关键字:复制 文件 权限 原始 | 更新日期: 2023-09-27 18:22:36
使用File.Copy()方法时,文件会被复制到其新目录,但会丢失其原始权限。
有没有办法复制一个文件,这样它就不会失去权限?
我相信你可以这样做:
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);
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