File.Exists 从网络共享返回 false

Posted

技术标签:

【中文标题】File.Exists 从网络共享返回 false【英文标题】:File.Exists returning false from a network share 【发布时间】:2008-12-30 19:51:13 【问题描述】:

我一直在处理一个 ASP.NET 项目,它将把上传的文件保存到网络共享中。我想我可以只使用一个虚拟目录就可以了,但是我一直在为 Directory.CreateDirectory 的权限而苦苦挣扎。

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

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

有什么想法吗?我在网络共享方面已经走到了尽头。

【问题讨论】:

您可以考虑使用“ASP.NET”重新标记它。我会这样做,但我的代表还不够高:( 【参考方案1】:

File.Exist 实际上并不检查文件是否存在。相反,它会检查您可以访问的文件是否存在。如果您知道该文件存在,则可能的问题是您无权访问它。

【讨论】:

你从一种半真半假的陈述开始。最好有“它检查您可以访问的文件是否存在”。【参考方案2】:

我最近刚刚从事了一个非常相似的项目,我将文件保存到网络共享。两台计算机在同一个子网上,但不受域控制器控制,所以每台计算机都有自己的用户。

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

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

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
using System.Security.Principal;
using System.Security.Permissions;
using System.Text;

namespace MyProject.Business.Web

    public class SecurityManager
    
        #region DLL Imports
        [DllImport("advapi32.dll", SetLastError = true, CharSet = CharSet.Unicode)]
        public static extern bool LogonUser(String lpszUsername, String lpszDomain, String lpszPassword, int dwLogonType, int dwLogonProvider, ref IntPtr phToken);

        [DllImport("kernel32.dll", CharSet = CharSet.Auto)]
        public extern static bool CloseHandle(IntPtr handle);

        [DllImport("advapi32.dll", CharSet = CharSet.Auto, SetLastError = true)]
        public extern static bool DuplicateToken(IntPtr ExistingTokenHandle, int SECURITY_IMPERSONATION_LEVEL, ref IntPtr DuplicateTokenHandle);
        #endregion

        public string Domain  get; set; 
        public string UserName  get; set; 
        public string Password  get; set; 

        private WindowsImpersonationContext m_CurrentImpersonationContext;

        [PermissionSetAttribute(SecurityAction.Demand, Name = "FullTrust")]
        public void StartImpersonation()
        
            const int LOGON32_PROVIDER_DEFAULT = 0;
            const int LOGON32_LOGON_INTERACTIVE = 2;

            IntPtr tokenHandle = IntPtr.Zero;
            IntPtr dupeTokenHandle = IntPtr.Zero;

            // obtain a handle to an access token
            bool wasLogonSuccessful = LogonUser(UserName, Domain, Password, LOGON32_LOGON_INTERACTIVE, LOGON32_PROVIDER_DEFAULT, ref tokenHandle);

            if (!wasLogonSuccessful)
                throw new Exception(String.Format("Logon failed with error number 0", Marshal.GetLastWin32Error()));

            // use the token handle to impersonate the user
            WindowsIdentity newId = new WindowsIdentity(tokenHandle);
            m_CurrentImpersonationContext = newId.Impersonate();

            // free the tokens
            if (tokenHandle != IntPtr.Zero)
                CloseHandle(tokenHandle);
        
        public void EndImpersonation()
        
            m_CurrentImpersonationContext.Undo();
        
    

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

SecurityManager sm = new SecurityManager();
sm.UserName = ConfigurationManager.AppSettings["UserFileShareUsername"];
sm.Password = ConfigurationManager.AppSettings["UserFileSharePassword"];
sm.StartImpersonation();

if (!Directory.Exists(folderPath)) Directory.CreateDirectory(folderPath);

File.Move(sourcePath, destinationPath);

sm.EndImpersonation();

【讨论】:

AJ,你能看看我的情况并提出解决方案吗?***.com/questions/12683648/…【参考方案3】:

也许您正在运行的代码(即 ASP.NET 服务器代码)作为无权访问该网络共享的用户(例如 IIS 用户)运行。

我认为 IIS 不应该以高特权用户的身份运行,默认情况下该用户有权查看其他计算机上的共享。

【讨论】:

我已经在权限路径上走了一百万次。我希望这可能是一个 hacky 解决方法,因为我无法解决权限问题,但可惜我回到了第 1 格。【参考方案4】:

我使用了几乎相同的代码,但我的类实现了 IDisposable 接口,并将 Undo() 添加到 Dispose() 方法中。如果您是唯一使用它的开发人员并且您将始终以正确的方式做事,那么此代码可以正常工作,对吧?

【讨论】:

这个答案的目的是什么?我认为它不会为问题增加任何价值。 对,因为无论如何 IDisposable 接口中的值是什么。愚蠢的 Jon Skeet 让我们自行清理,以一致的方式向垃圾收集器发出指令。

以上是关于File.Exists 从网络共享返回 false的主要内容,如果未能解决你的问题,请参考以下文章

C# File.Exists 返回 false,文件确实存在

为啥'File.exists'返回true,即使NIO'Files'类中的'Files.exists'返回false

检查文件是不是存在? file.exists() 总是返回 false

File.Exists() 在 IIS 上总是返回 false

File.exists() 为现有文件返回 false

File.Exists判断文件是不是存在总是返回False?