C#/.NET:从回收站内的文件中检索内容/文件属性

发布于 2024-08-29 09:32:51 字数 108 浏览 6 评论 0原文

我只是想问是否有可能以编程方式从回收站检索“转储”文件的内容。我正在寻找的内容是文件属性,例如“上次修改日期”、“创建的数据”、“大小”等(无需将文件本身恢复到原始位置以保留在回收站内找到的原始属性。)

I just wanna ask if there's a possibility to retrieve the contents of a 'dump' file from the recycle bin programatically. The contents that I'm looking for are file attributes like 'Date Last Modified, 'Data created', 'size', etc (without restoring the file itself to the original location to preserve the original attributes found while inside the recycle bin.)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

把梦留给海 2024-09-05 09:32:51

This article should help you. As the guy pointed out in his article there is surely a P/Invoke solution but he couldn't find it.

只为守护你 2024-09-05 09:32:51

有一个非直接的 C# 解决方案。 P/Invoke 调用是其中一种方式。

回收站和其他应用程序经常使用的特殊文件夹的位置可以通过 CSIDL 来识别(壳牌)。对于回收站,使用的枚举是 CSIDL_BITBUCKET。 CSIDL 与四个 Shell 函数之一结合使用:SHGetFolderLocation、SHGetFolderPath、SHGetSpecialFolderLocation 和 SHGetSpecialFolderPath,检索特殊文件夹的路径。

使用回收站

C++ 实现可以在这里找到:如何以编程方式 c# 示例。

回收站文件大小和文件计数。
清空回收站

There is a not direct c# solution. P/Invoke calls is one of the way.

The location of Recycle bin and other special folders used frequently by applications can be idenitified by CSIDL(Shell). For recycle bin the enum used is CSIDL_BITBUCKET. A CSIDL is used in conjunction with one of four Shell functions, SHGetFolderLocation, SHGetFolderPath, SHGetSpecialFolderLocation, and SHGetSpecialFolderPath, to retrieve a special folder's path.

The C++ implementaion can be found here: How to programmatically use the Recycle Bin

Some c# samples.

Recycle Bin file size and file count.
Empty Recycle Bin

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文