删除 .NET 中的文件和文件夹
我的 .NET 应用程序中有一个橡皮擦类。
它允许用户安全地删除文件和文件夹,而没有机会通过任何文件恢复软件恢复已删除的数据。
目前,它的工作原理是以二进制模式打开文件并用随机字节填充大小。
恐怕这个解决方案并不可靠。当内容被删除时,文件记录本身(文件名、大小、属性)仍然是可恢复的。
问题是 - 如何删除与特定文件或文件夹相关的系统数据。我认为托管代码在这里无济于事,应该使用 Windows API。
I've got an eraser class in my .NET application.
It allows user to delete files and folders securely, without a chance to recover erased data by any file recovery software.
Currently it works by opening the file in binary mode and filling the size with random bytes.
I'm afraid the solution is not reliable. While the contents gets erased, file record itself (file name, size, attributes), remains recoverable.
The question is - how to erase the system data related to specific file or folder. I think managed code can't help here and Windows API should be used.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
用随机数据覆盖,更改文件属性,多次重命名文件,更改文件大小,然后才删除文件?
Overwrite with random data, change the file attributes, rename the file several times, change the file size, and only then delete the file?