使用FolderBrowserDialog限制对某些文件夹的访问

时间:2012-09-14 09:20:47

标签: c# .net winforms access-rights

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

1 个答案:

答案 0 :(得分: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 question获得的。