删除 .NET 中的文件和文件夹

发布于 2024-10-17 14:49:10 字数 241 浏览 3 评论 0原文

我的 .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 技术交流群。

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

发布评论

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

评论(1

哽咽笑 2024-10-24 14:49:10

用随机数据覆盖,更改文件属性,多次重命名文件,更改文件大小,然后才删除文件?

Overwrite with random data, change the file attributes, rename the file several times, change the file size, and only then delete the file?

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