asp.net – File.Exists从网络共享返回false

前端之家收集整理的这篇文章主要介绍了asp.net – File.Exists从网络共享返回false前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我一直在研究一个将上传文件保存到网络共享的ASP.NET项目.我想我可以使用虚拟目录并且没问题,但我一直在努力获得Directory.CreateDirectory的权限.

我能够上传文件,所以我决定更改我的代码,将所有内容放在一个目录中,但这需要我使用File.Exists来避免重写.

现在我已经更新了所有代码,我发现无论我做什么,当我测试网络共享时,File.Exists总是返回false(文件肯定存在).

有任何想法吗?我正在通过网络共享走到尽头.

解决方法

我刚刚参与了一个非常类似的项目,我将文件保存到网络共享.这两台计算机位于同一子网上,但不受域控制器控制,因此每台计算机都拥有自己的用户.

我在两台计算机上创建了一个用户名和密码相同的用户.然后我创建了一个网络共享并设置文件夹/共享权限以允许用户进行读写.

然后我创建了以下类来管理模拟:

  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. using System.Runtime.InteropServices;
  6. using System.Security.Principal;
  7. using System.Security.Permissions;
  8. using System.Text;
  9.  
  10. namespace MyProject.Business.Web
  11. {
  12. public class SecurityManager
  13. {
  14. #region DLL Imports
  15. [DllImport("advapi32.dll",SetLastError = true,CharSet = CharSet.Unicode)]
  16. public static extern bool logonUser(String lpszUsername,String lpszDomain,String lpszPassword,int dwlogonType,int dwlogonProvider,ref IntPtr phToken);
  17.  
  18. [DllImport("kernel32.dll",CharSet = CharSet.Auto)]
  19. public extern static bool CloseHandle(IntPtr handle);
  20.  
  21. [DllImport("advapi32.dll",CharSet = CharSet.Auto,SetLastError = true)]
  22. public extern static bool DuplicateToken(IntPtr ExistingTokenHandle,int SECURITY_IMPERSONATION_LEVEL,ref IntPtr DuplicateTokenHandle);
  23. #endregion
  24.  
  25. public string Domain { get; set; }
  26. public string UserName { get; set; }
  27. public string Password { get; set; }
  28.  
  29. private WindowsImpersonationContext m_CurrentImpersonationContext;
  30.  
  31. [PermissionSetAttribute(SecurityAction.Demand,Name = "FullTrust")]
  32. public void StartImpersonation()
  33. {
  34. const int logoN32_PROVIDER_DEFAULT = 0;
  35. const int logoN32_logoN_INTERACTIVE = 2;
  36.  
  37. IntPtr tokenHandle = IntPtr.Zero;
  38. IntPtr dupeTokenHandle = IntPtr.Zero;
  39.  
  40. // obtain a handle to an access token
  41. bool waslogonSuccessful = logonUser(UserName,Domain,Password,logoN32_logoN_INTERACTIVE,logoN32_PROVIDER_DEFAULT,ref tokenHandle);
  42.  
  43. if (!waslogonSuccessful)
  44. throw new Exception(String.Format("logon Failed with error number {0}",Marshal.GetLastWin32Error()));
  45.  
  46. // use the token handle to impersonate the user
  47. WindowsIdentity newId = new WindowsIdentity(tokenHandle);
  48. m_CurrentImpersonationContext = newId.Impersonate();
  49.  
  50. // free the tokens
  51. if (tokenHandle != IntPtr.Zero)
  52. CloseHandle(tokenHandle);
  53. }
  54. public void EndImpersonation()
  55. {
  56. m_CurrentImpersonationContext.Undo();
  57. }
  58. }
  59. }

然后在ASP.NET页面中,我执行了以下操作:

  1. SecurityManager sm = new SecurityManager();
  2. sm.UserName = ConfigurationManager.AppSettings["UserFileShareUsername"];
  3. sm.Password = ConfigurationManager.AppSettings["UserFileSharePassword"];
  4. sm.StartImpersonation();
  5.  
  6. if (!Directory.Exists(folderPath)) Directory.CreateDirectory(folderPath);
  7.  
  8. File.Move(sourcePath,destinationPath);
  9.  
  10. sm.EndImpersonation();

猜你在找的asp.Net相关文章