C#ASP Directory在不存在时存在

时间:2019-06-07 14:27:29

标签: c# asp.net kentico

我在检查Directory.Exists时遇到问题,而该目录不存在时总是返回true。至少这些是我基于错误日志的假设。

注意:问题不是在本地开发环境中发生,而仅在生产环境中发生。

因此,开始是错误消息:

Message: Could not find a part of the path 'd:\home\site\wwwroot\media\cdn'.

Exception type: System.IO.DirectoryNotFoundException
Stack Trace: 
at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.FileSystemEnumerableIterator`1.CommonInit()
at System.IO.FileSystemEnumerableIterator`1..ctor(String path, String originalUserPath, String searchPattern, SearchOption searchOption, SearchResultHandler`1 resultHandler, Boolean checkHost)
at System.IO.Directory.GetFiles(String path, String searchPattern)
at CMS.AzureStorage.Directory.GetFiles(String path, String searchPattern)
at CMS.IO.Directory.GetFiles(String path, String searchPattern)
at CMS.AzureStorage.DirectoryInfo.GetFiles(String searchPattern, SearchOption searchOption)

相关功能(精简到相关代码段):

public override string[] GetFiles(string path, string searchPattern)
{
  List<string> stringList = new List<string>();
  if (Directory.ExistsInFileSystem(path))
  {
    foreach (string file in System.IO.Directory.GetFiles(path, searchPattern))
      stringList.Add(Directory.GetCaseValidPath(file, new bool?()));
  }
  ...
}

public static bool ExistsInFileSystem(string path)
{
  return System.IO.Directory.Exists(path);
}

如您所见,它正在到达System.IO.Directory.GetFiles,但是我不明白的是,当目录不存在时,if (Directory.ExistsInFileSystem(path))行是如何被绕过的?

我很困惑,希望有人能解释发生了什么事。

1 个答案:

答案 0 :(得分:0)

您正在尝试访问站点根文件夹之外的文件夹。
如果生产环境是“ Cloud”,则需要提供对目录的访问。
提供访问权限取决于您的云环境

  1. 如果您使用的是VM,则可以直接转到IIS并提供目录访问权限。
  2. 对于其他模型,您需要通过代码提供访问权限。

下面是用于提供对wwwroot文件夹的读写访问权限的代码。 您可以在以下代码之后调用您的代码

string file = @"d:\home\site\wwwroot"; 
DirectoryInfo dInfo = new DirectoryInfo(file);
DirectorySecurity dSecurity = dInfo.GetAccessControl();
dSecurity.AddAccessRule(new FileSystemAccessRule(new SecurityIdentifier(WellKnownSidType.WorldSid, null), FileSystemRights.FullControl, InheritanceFlags.ObjectInherit | InheritanceFlags.ContainerInherit, PropagationFlags.NoPropagateInherit, AccessControlType.Allow));
dInfo.SetAccessControl(dSecurity);