2

我使用 Visual Studio 2015 在 c# 中开发了一个应用程序,它通常将一些文件从一个目录(源)复制到另一个(目标)。我的问题是源路径是域中的另一台计算机。我希望能够访问该目录并获取我的文件、用户域、用户名和密码源计算机。我已经看到了一些解决方案,但我无法了解他们如何访问另一台计算机。我曾经使用目录来获取我的文件。GetDirectories(路径),我现在使用它太深了,无法将其更改为平滑。感谢您帮助我解决我的问题,我现在真的被封锁了好几天。

string[] folder1;
string[] folder2;
folder1 = Directory.GetDirectories(path);
foreach (string fld1 in folder1)
{
    folder2 = Directory.GetDirectories(fld);
    foreach(string fld2 in folder2)
    {
        for(int i = 0; i < MyList.Count(); i++)
        {
            if(fld2.Contains("nok") || fld2.Contains("Nok"))
                LNok = Directory.GetFiles(fld2, picList[i]);
            else
                Lok = Directory.GetFiles(fld2, picList[i]);
        }
    }
}

4

1 回答 1

4

由于System.IO.FileSystem.IO.Directory方法不支持传递凭据,因此首选的解决方案是模拟授权用户帐户。这需要使用 pInvoke 从 advapi32.dll 和 kernel32.dll 导入两个方法:

//Impersonation functionality
[DllImport("advapi32.dll", SetLastError = true)]
private static extern bool LogonUser(string lpszUsername, string lpszDomain, string lpszPassword, int dwLogonType, int dwLogonProvider, ref IntPtr phToken);

//Disconnection after file operations
[DllImport("kernel32.dll")]
private static extern Boolean CloseHandle(IntPtr hObject);

下面的代码利用这些方法来创建一个WindowsImpersonationContext

const int LOGON_TYPE_NEW_CREDENTIALS = 9;
const int LOGON32_PROVIDER_WINNT50 = 3;

//User token that represents the authorized user account
IntPtr token = IntPtr.Zero;

bool result = LogonUser("username", "domainname", "password",  LOGON_TYPE_NEW_CREDENTIALS , LOGON32_PROVIDER_WINNT50, ref token);

if (result == true)
{
    //Use token to setup a WindowsImpersonationContext 
    using (WindowsImpersonationContext ctx = new WindowsIdentity(token).Impersonate())
    {
        //Your file operations
        string[] files = Directory.GetFiles(@"\\remotemachine\share\folder");

        //Release the context, and close user token
        ctx.Undo();
        CloseHandle(token);
    }
}

在这里您可以找到 LogonUser 函数的 MSDN 文档

于 2017-07-13T08:17:48.987 回答