我想获得回收垃圾箱的路径。我在网上搜索,发现人们使用shell32并获取回收站中的文件列表。但是,我只想获取回收站的路径,因为我的目的是在将IncludeSubdirectories设置为true时从我的filewatcher中排除监视回收站。使用shell32获取下面显示的文件列表的代码,但我不知道如何获取回收bin的路径。
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);
}
提前致谢!
答案 0 :(得分:1)
这里是回收站目录C:\$Recycle.Bin
...如果你想获取文件un-hide
diretory ...
答案 1 :(得分:1)
我的服务器在回收站中停滞了超过590,000个文件。任何尝试打开回收站的操作都会导致服务器内存不足并崩溃。
此代码在Powershell ISE中有效。花了将近30分钟。没有错误。
Get-ChildItem -Path 'C:\$Recycle.Bin' -Force | Remove-Item -Recurse -ErrorAction SilentlyContinue
答案 2 :(得分:-1)
请检查this链接。这可以帮助您获得回收垃圾箱的路径。
您可以在此处访问网址C:\$Recycle.Bin