编辑 8/8/2012: 我对我正在使用的代码进行了一些重大更改,并希望对我遇到的最后一个问题提供一些新的帮助。我将重写这个问题的大部分内容。
我有一个小程序,它递归地遍历目标目录下的每个文件和文件夹,检查特定字符的名称。它工作得很好,但我正在寻找有关如何使特定方法更快工作的帮助。
这是我目前正在使用的代码。这只是启动所有方法的几行代码:
if(getFullList(initialPathTB.Text))
SearchFolder();
这些是您需要查看的两种方法:
private void SearchFolder()
{
int newRow;
int numItems = 0;
numItems = itemsMaster.Length;
for (int x = 0; x < numItems; x++)
{
if (hasIllegalChars(itemsMaster[x]) == true)
{
newRow = dataGridView1.Rows.Add();
dataGridView1.Rows[newRow].Cells[0].Value = itemsMaster[x];
filesFound++;
}
}
}
private bool getFullList(string folderPath)
{
try
{
if (checkBox17.Checked)
itemsMaster = Directory.GetFileSystemEntries(folderPath, "*", SearchOption.AllDirectories);
else
itemsMaster = Directory.GetFileSystemEntries(folderPath, "*", SearchOption.TopDirectoryOnly);
return true;
}
catch (UnauthorizedAccessException e)
{
if(folderPath[folderPath.Length - 1] != '\\')
folderPath += @"\";
if (e.Message == "Access to the path '" + folderPath + "' is denied.")
{
MessageBox.Show("You do not have read permission for the following directory:\n\n\t" + folderPath + "\n\nPlease select another folder or log in as a user with read access to this folder.", "Access Denied", MessageBoxButtons.OK, MessageBoxIcon.Error);
folderPath = folderPath.Substring(0, folderPath.Length - 1);
}
else
{
if (accessDenied == null)
accessDenied = new StringBuilder("");
accessDenied.AppendLine(e.Message.Substring(20, e.Message.Length - 32));
}
return false;
}
}
initialPathTB.Text
填充有“F:\COMMON\Administration”之类的内容。
这是我的问题。 当传递给的顶层folderPath
是用户没有读取权限的顶层时,一切正常。当顶级目录和所有从属目录都是用户具有读取权限的文件夹时,一切都会再次正常工作。问题在于用户对顶层具有读取权限但对更深层次的某些子文件夹没有读取权限的目录。这就是为什么getFullList()
是布尔值;如果有任何 UnauthorizedAccessExceptions 则itemsMaster
保持为空并SearchFolder()
失败numItems = itemsMaster.Length;
。
我想要的是填充itemsMaster
其中的每个项目,folderPath
并简单地跳过用户没有读取权限的项目,但我不知道如何在不递归爬取和检查每个目录的情况下做到这一点。
这段代码比我的旧方法运行得快得多,所以我不想完全放弃它。有什么方法可以使该Directory.GetFileSystemEntries()
方法做我想要的吗?