2

我想限制一个人可以选择在我的应用程序中设置其默认保存路径的文件夹。是否有一个类或方法可以让我检查访问权限并限制用户的选项或在他们做出选择后显示错误。FileSystemSecurity.AccessRightType 有可能吗?

4

1 回答 1

1

由于FolderBrowserDialog是一个相当封闭的控件(它打开一个模式对话框,执行它,并让您知道用户选择了什么),我认为您不会很幸运地拦截用户可以选择或看到的内容。当然,您总是可以制作自己的自定义控件;)

至于测试他们是否有权访问文件夹

private void OnHandlingSomeEvent(object sender, EventArgs e)
{
  DialogResult result = folderBrowserDialog1.ShowDialog();
  if(result == DialogResult.OK)
  {
      String folderPath = folderBrowserDialog1.SelectedPath;
      if (UserHasAccess(folderPath)) 
      {
        // yay! you'd obviously do something for the else part here too...
      }
  }
}

private bool UserHasAccess(String folderPath)
{
  try
  {
    // Attempt to get a list of security permissions from the folder. 
    // This will raise an exception if the path is read only or do not have access to view the permissions. 
    System.Security.AccessControl.DirectorySecurity ds =
      System.IO.Directory.GetAccessControl(folderPath);
    return true;
  }
  catch (UnauthorizedAccessException)
  {
    return false;
  }
}

我应该注意,UserHasAccess函数的东西是从另一个 StackOverflow问题中获得的。

于 2012-09-14T14:50:20.163 回答