0

当我尝试在 c:\ 目录中搜索文件时出现以下错误。

拒绝访问路径“C:\$RECYCLE.BIN\S-1-5-21-3560828095-1020290111-2102031911-500”。

我使用的代码是:

private void button12_Click(object sender, EventArgs e)
    {

        string[] files = Directory.GetFiles("C:\\",
      "*.*",
      SearchOption.AllDirectories);

        // Display all the files.
        foreach (string file in files)
        {
            MessageBox.Show(file);
        }

    }

`

4

1 回答 1

1

这是一个问题......如何?回收站子目录归您计算机上的各个用户所有,而您运行此目录的帐户正试图访问其他帐户的回收站。

于 2012-05-05T04:32:32.270 回答