如何获取回收站的路径

本文关键字:回收站 路径 获取 何获取 | 更新日期: 2023-09-27 17:57:00

我想获取回收站的路径。我在网上搜索,发现人们使用 shell32 并在回收站中获取文件列表。但是,我只想获取回收站的路径,因为我的目的是在将 IncludeSubdirectory 设置为 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);
}

提前感谢!

如何获取回收站的路径

我的服务器陷入了回收站中超过 590,000 个文件的困境。 任何打开回收站的尝试都会导致服务器内存不足并崩溃。

此代码从Powershell ISE工作。 花了将近30分钟。没有错误。

Get-ChildItem -Path 'C:'$Recycle.Bin' -Force | Remove-Item -Recurse -ErrorAction SilentlyContinue

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

请查看此链接。这可以帮助您获取回收站的路径。

在这里,您可以访问 URL C:'$Recycle.Bin