我想获得回收站的路径。我在网上搜索,发现人们使用shell32并在回收站中获取文件列表。但是,我只想获取回收站的路径,因为我的目的是在将IncludeSubdirectories设置为true时从文件监视程序中排除监视器回收站。使用shell32来获取文件列表的代码如下所示,但我不了解如何获取回收站的路径。

Shell Shl = new Shell();
Folder Recycler = Shl.NameSpace(10);
for (int i = 0; i < Recycler.Items().Count; i++)
{
    FolderItem FI = Recycler.Items().Item(i);
    string FileName = Recycler.GetDetailsOf(FI, 0);
    if (Path.GetExtension(FileName) == "") FileName += Path.GetExtension(FI.Path);
    string FilePath = Recycler.GetDetailsOf(FI, 1);
    Console.WriteLine(FilePath);
}


提前致谢!

最佳答案

这是回收站目录C:\$Recycle.Bin ...如果要获取文件un-hide
目录...

10-06 00:35