我有一個網絡共享驅動器(「\ serveur \文件夾」),我想在其上覆制文件。 我可以在驅動器上寫入特定用戶(「用戶」/「通行證」)。 如何使用C#訪問共享帶寫權限的共享?在網絡共享驅動器上覆制文件
15
A
回答
23
未經測試的代碼,但它會類同:
AppDomain.CurrentDomain.SetPrincipalPolicy(PrincipalPolicy.WindowsPrincipal);
// http://pinvoke.net/default.aspx/advapi32/LogonUser.html
IntPtr token;
LogonUser("username", "domain", "password", LogonType.LOGON32_LOGON_BATCH, LogonProvider.LOGON32_PROVIDER_DEFAULT);
WindowsIdentity identity = new WindowsIdentity(token);
WindowsImpersonationContext context = identity.Impersonate();
try
{
File.Copy(@"c:\temp\MyFile.txt", @"\\server\folder\Myfile.txt", true);
}
finally
{
context.Undo();
}
0
創建一個有權寫入網絡驅動器的用戶,並使用c#中的模擬用戶訪問驅動器時使用該用戶。
1
下面是ASP.NET應用程序的工作示例。 Original source
private void SendToFileShare(byte[] pdfData, string fileName)
{
if(pdfData == null)
{
throw new ArgumentNullException("pdfData");
}
if (string.IsNullOrWhiteSpace(fileName))
{
//Assign a unique name because the programmer failed to specify one.
fileName = Guid.NewGuid().ToString();
}
else
{
//Should probably replace special characters (windows filenames) with something.
}
string networkShareLocation = @"\\your\network\share\";
var path = $"{networkShareLocation}{fileName}.pdf";
//Credentials for the account that has write-access. Probably best to store these in a web.config file.
var domain = "AB";
var userID = "Mr";
var password = "C";
if (ImpersonateUser(domain, userID, password) == true)
{
//write the PDF to the share:
System.IO.File.WriteAllBytes(path, report);
undoImpersonation();
}
else
{
//Could not authenticate account. Something is up.
//Log or something.
}
}
/// <summary>
/// Impersonates the given user during the session.
/// </summary>
/// <param name="domain">The domain.</param>
/// <param name="userName">Name of the user.</param>
/// <param name="password">The password.</param>
/// <returns></returns>
private bool ImpersonateUser(string domain, string userName, string password)
{
WindowsIdentity tempWindowsIdentity;
IntPtr token = IntPtr.Zero;
IntPtr tokenDuplicate = IntPtr.Zero;
if (RevertToSelf())
{
if (LogonUserA(userName, domain, password, LOGON32_LOGON_INTERACTIVE,
LOGON32_PROVIDER_DEFAULT, ref token) != 0)
{
if (DuplicateToken(token, 2, ref tokenDuplicate) != 0)
{
tempWindowsIdentity = new WindowsIdentity(tokenDuplicate);
impersonationContext = tempWindowsIdentity.Impersonate();
if (impersonationContext != null)
{
CloseHandle(token);
CloseHandle(tokenDuplicate);
return true;
}
}
}
}
if (token != IntPtr.Zero)
CloseHandle(token);
if (tokenDuplicate != IntPtr.Zero)
CloseHandle(tokenDuplicate);
return false;
}
/// <summary>
/// Undoes the current impersonation.
/// </summary>
private void undoImpersonation()
{
impersonationContext.Undo();
}
#region Impersionation global variables
public const int LOGON32_LOGON_INTERACTIVE = 2;
public const int LOGON32_PROVIDER_DEFAULT = 0;
WindowsImpersonationContext impersonationContext;
[DllImport("advapi32.dll")]
public static extern int LogonUserA(String lpszUserName,
String lpszDomain,
String lpszPassword,
int dwLogonType,
int dwLogonProvider,
ref IntPtr phToken);
[DllImport("advapi32.dll", CharSet = CharSet.Auto, SetLastError = true)]
public static extern int DuplicateToken(IntPtr hToken,
int impersonationLevel,
ref IntPtr hNewToken);
[DllImport("advapi32.dll", CharSet = CharSet.Auto, SetLastError = true)]
public static extern bool RevertToSelf();
[DllImport("kernel32.dll", CharSet = CharSet.Auto)]
public static extern bool CloseHandle(IntPtr handle);
#endregion
相關問題
- 1. 如何在共享網絡驅動器上存儲文件c#
- 2. ipad:讀取共享網絡驅動器上的文件
- 3. 檢查文件是否是共享網絡驅動器上accessable
- 4. 在網絡共享上移動文件
- 5. 訪問共享網絡驅動器
- 6. FileSystemWatcher.Path網絡共享驅動器異常
- 7. 檢查共享網絡驅動器中是否存在文件
- 8. 共享文件夾/網絡驅動器服務器2008
- 9. 刪除從網絡文件共享驅動器
- 10. 從網絡共享驅動器遠程執行exe文件?
- 11. 複製文件到共享驅動器在ASP.net失敗c#
- 12. 從網絡共享驅動器複製文件到桌面使用DOS中的DOS複製命令
- 13. 使用C#將文件從本地驅動器複製到共享驅動器
- 14. 在網絡上重新共享文件
- 15. Android上傳到網絡驅動器(samba共享)性能問題
- 16. 使用SharePoint 2007連接到網絡上的共享驅動器
- 17. 在工作的共享網絡驅動器上使用版本控制系統
- 18. 使用PowerShell將文件複製到共享驅動器
- 19. 複製本地共享文件,將Linux本地驅動器
- 20. 網絡驅動器上訪問文件
- 21. Gradle無法將工件發佈到網絡/共享驅動器
- 22. 保存時自動將文件複製到網絡驅動器
- 23. Shuttil Python將文件複製到受限制的共享驅動器上
- 24. 複製的PDF文件共享網絡和文件損壞
- 25. 通過文件共享,用戶身份驗證在網絡上覆制文件
- 26. 與.bat共享文件夾在網絡上的問題(網絡共享)
- 27. VB6:在網絡共享內複製文件
- 28. 負載從共享網絡驅動器在C#中的DLL
- 29. 可移動驅動器的網絡共享消失(Windows)
- 30. 將網絡文件複製到驅動器
其中是'LogonUser'函數的聲明? – 2018-01-30 13:35:16
@Nitin:請參閱代碼中的評論? http://pinvoke.net/default.aspx/advapi32/LogonUser.html。這是一個win32 API調用 – 2018-01-31 00:39:46