我正在尝试将现有文件从特定文件夹复制到共享文件夹。这是代码:
if (!System.IO.File.Exists(fullPath))
{
using (WindowsIdentity.GetCurrent().Impersonate())
{
try
{
image.Save(fullPath);
System.Security.AccessControl.DirectorySecurity sec = System.IO.Directory.GetAccessControl(originalDocumentFolderPath);
FileSystemAccessRule accRule = new FileSystemAccessRule(originalDocumentFolderPath, FileSystemRights.FullControl, AccessControlType.Allow);
sec.AddAccessRule(accRule);
string sharedFolderPath = "\\" + Path.Combine(Environment.MachineName, "Users");
sharedFolderPath = Path.Combine(sharedFolderPath, username);
sharedFolderPath = Path.Combine(sharedFolderPath, "Desktop");
sharedFolderPath = Path.Combine(sharedFolderPath, "SharedFolder");
System.IO.File.Copy(originalDocumentFolderPath, sharedFolderPath);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
}
我收到此错误:
System.Security.Principal.IdentityNotMappedException:'部分或全部 身份参考无法翻译。'
在此行:
sec.AddAccessRule(accRule);
我在做什么错?如果您需要更多数据,请告诉我...
编辑:
此外,最终目标是,这实际上应该将文件保存到LAN网络中特定计算机上的共享文件夹中,但是我目前正在尝试将其保存在运行程序的同一台计算机上的共享文件夹中。
编辑2:
所以我尝试了@PaulKaram的建议,但仍然遇到下一个错误:
从图片中可以看到我首先保存图像的文档中的文件夹。那没有问题。当我尝试将其复制到台式机上的特定共享文件夹上时,对于已经在“文档”中创建的文件夹,会出现上述错误(访问被拒绝)。
答案 0 :(得分:5)
错误Some or all identity references could not be translated
表示找不到您正在使用的身份/帐户。深入了解,我们可以看到
您对此行有疑问:
FileSystemAccessRule accRule = new FileSystemAccessRule(originalDocumentFolderPath, FileSystemRights.FullControl, AccessControlType.Allow);
看看您正在使用的FileSystemAccessRule
构造函数。这是签名:
public FileSystemAccessRule (string identity, System.Security.AccessControl.FileSystemRights fileSystemRights, System.Security.AccessControl.AccessControlType type);
应该发送的第一个参数是从文档中获取的身份:
用户帐户的名称。
我不确定您要在originalDocumentFolderPath
中发送什么。
假设username
拥有您要模拟的身份,则该行应更改为:
FileSystemAccessRule accRule = new FileSystemAccessRule(username, FileSystemRights.FullControl, AccessControlType.Allow);
您应该注意的另外两件事:
首先,您正在使用网络上的共享文件夹,因此需要修复此行:
string sharedFolderPath = "\\" + Path.Combine(Environment.MachineName, "Users");
对此:
string sharedFolderPath = "\\\\" + Path.Combine(Environment.MachineName, "Users");
在使用网络文件夹时,需要在开始处使用双反斜杠,并且由于在C#
中反斜杠会转义字符,因此您需要将其写为\\\\
。
第二,您还应该注意,您正在尝试复制文件,并为其指定文件夹名称作为目的地。要解决此问题,您应该在合并共享文件夹的路径末尾添加以下内容:
sharedFolderPath = Path.Combine(sharedFolderPath, "file.extension");
最后,这是您的完整代码,应该可以正常工作:
if (!System.IO.File.Exists(fullPath))
{
using (WindowsIdentity.GetCurrent().Impersonate())
{
try
{
image.Save(fullPath);
System.Security.AccessControl.DirectorySecurity sec = System.IO.Directory.GetAccessControl(originalDocumentFolderPath);
FileSystemAccessRule accRule = new FileSystemAccessRule(username, FileSystemRights.FullControl, AccessControlType.Allow);
sec.AddAccessRule(accRule);
string sharedFolderPath = "\\\\" + Path.Combine(Environment.MachineName, "Users");
sharedFolderPath = Path.Combine(sharedFolderPath, username);
sharedFolderPath = Path.Combine(sharedFolderPath, "Desktop");
sharedFolderPath = Path.Combine(sharedFolderPath, "SharedFolder");
sharedFolderPath = Path.Combine(sharedFolderPath, "file.extension");
System.IO.File.Copy(originalDocumentFolderPath, sharedFolderPath);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
}