使用模仿者复制文件,抛出未经授权的访问异常

Copying a file, using impersonator, throw an Unauthorized Access Exception

我正在使用 this Impersonator class 将文件复制到具有访问权限的目录。

public void CopyFile(string sourceFullFileName,string targetFullFileName)
{
    var fileInfo = new FileInfo(sourceFullFileName);

    try
    {
        using (new Impersonator("username", "domain", "pwd"))
        {
            // The following code is executed under the impersonated user.
            fileInfo.CopyTo(targetFullFileName, true);
        }
    }
    catch (IOException)
    {
        throw;
    }
}

这段代码几乎可以完美运行。 我面临的问题是当 sourceFullFileName 是位于 C:\Users\username\Documents 等文件夹中的文件时,原始用户可以访问但模仿者不是。

我在尝试从此类位置复制文件时遇到的异常是:

An unhandled exception of type 'System.UnauthorizedAccessException' occurred in mscorlib.dll Additional information: Access to the path 'C:\Users\username\Documents\file.txt' is denied.

感谢@Uwe Keim 的想法,以下解决方案完美运行:

    public void CopyFile(string sourceFullFileName,string targetFullFileName)
    {
        var fileInfo = new FileInfo(sourceFullFileName);

        using (MemoryStream ms = new MemoryStream())
        {
            using (var file = new FileStream(sourceFullFileName, FileMode.Open, FileAccess.Read))
            {
                 byte[] bytes = new byte[file.Length];
                 file.Read(bytes, 0, (int)file.Length);
                 ms.Write(bytes, 0, (int)file.Length);
             }

            using (new Impersonator("username", "domain", "pwd"))
            {
                 using (var file = new FileStream(targetFullFileName, FileMode.Create, FileAccess.Write))
                 {
                       byte[] bytes = new byte[ms.Length];
                       ms.Read(bytes, 0, (int)ms.Length);
                       file.Write(bytes, 0, bytes.Length);
                       ms.Close();
                 }
            }
        }
    }

模拟前,当前用户可以访问源文件路径但不能访问目标文件路径。

模拟之后,情况恰恰相反:被模拟的用户可以访问目标文件路径,但不能访问源文件路径。

如果文件不是太大,我的想法是:

public void CopyFile(string sourceFilePath, string destinationFilePath)
{
    var content = File.ReadAllBytes(sourceFilePath);

    using (new Impersonator("username", "domain", "pwd"))
    {
        File.WriteAllBytes(destinationFilePath, content);
    }
}

即:

  1. 将源文件路径中的所有内容读取到内存中的一个字节数组中。
  2. 模仿。
  3. 将内存中字节数组的内容全部写入目标文件路径

这里使用的方法和类: