Directory.GetDirectories()IOException

时间:2014-01-30 08:25:02

标签: c# directory ioexception

我有这段代码有时会抛出IOException,在它的消息中它显示The file is used by another process这对我来说毫无意义。我真的很困惑。对于跨线程操作,目录不是需要处理的资源,或者据我所知,就像这样。

void CloudFolderWatcher_Created ( object sender, FileSystemEventArgs e )
{
    var foldersToCreate = Directory.GetDirectories(e.FullPath, "*", SearchOption.AllDirectories);
    /// do something with foldersToCreate
}

这可能是什么问题?我怎样才能克服这个问题?

2 个答案:

答案 0 :(得分:0)

FileSystemEventArgs背后一定存在问题 因为其余的都在工作。(假设您使用WFA)

将(A)放在Public form1()

的正上方

您将获取foldersToCreate变量下的所有目录。检查你的“e”参数

(A)

public string Mypath;

private void Form1_Load(object sender, EventArgs e)
{
    DialogResult result = folderBrowserDialog1.ShowDialog();
    if (result == DialogResult.OK)
        Mypath = folderBrowserDialog1.SelectedPath;
    if (Mypath != "")
        CheckFOlder();
}

private void CheckFOlder()
{
    try
    {
        var foldersToCreate = Directory.GetDirectories(Mypath, "*", SearchOption.AllDirectories);
    }
    catch (IOException e)
    {
        MessageBox.Show(e.Message.ToString());
    }
    catch (UnauthorizedAccessException e)
    {
        MessageBox.Show(e.Message.ToString());
    }
}

PS您必须在表单中添加folderBrowserDialog1

答案 1 :(得分:0)

这意味着某个其他进程(甚至您的进程)会锁定其中一个阻止进程枚举其内容的目录。