C#/.NET:从回收站内的文件中检索内容/文件属性
我只是想问是否有可能以编程方式从回收站检索“转储”文件的内容。我正在寻找的内容是文件属性,例如“上次修改日期”、“创建的数据”、“大小”等(无需将文件本身恢复到原始位置以保留在回收站内找到的原始属性。)
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这篇文章< /a> 应该对你有帮助。正如该人在他的文章中指出的那样,肯定有一个
P/Invoke
解决方案,但他找不到它。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.有一个非直接的 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