在 Windows 上恢复已删除的文件

发布于 2024-09-01 18:43:25 字数 1539 浏览 7 评论 0原文

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

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

发布评论

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

评论(3

∝单色的世界 2024-09-08 18:43:25

文件恢复工具都是从扫描磁盘中的文件头或文件树的旧痕迹开始的。

要从头开始执行此操作,您需要了解目标驱动器及其文件系统。可以说,没有 API,尽管有一些项目可以直接从 Linux 访问 NTFS 文件系统,尽管听起来像是在 Windows 中开发。它们列在我的帖子中 Wiki 链接的末尾。我有一些可以直接访问驱动器的链接。从那里,您可以尝试通过任何可以从 NTFS 日志、日志或 FS 的其他组件派生的方法来检测旧文件。

假设您想使用 Windows 7 并将在操作系统中运行您的程序,请查看以下链接:

  1. Direct驱动器访问
  2. 创建文件
  3. 关于 NTFS(Windows 7 使用的文件系统)的维基百科文章 检查外部链接

您想要什么写作并不是一件微不足道的任务,但这正是它的有趣之处。

Well the file recovery tools all start by scanning the disk for file headers or for old traces of the file tree.

Looking to do this from scratch you need to understand your target drive and its file system. There is no API so to say, though there are projects that deal with accessing the NTFS file system directly from linux, though it sounds like you are developing in Windows. They are listed at the end of the Wiki link in my post. I have some links that will access the drive directly. From there you can t,ry to detect old files though any means you could derive from the NTFS Journal, Log or other component of the FS.

Assuming you want to use Windows 7 and will be running your program in the OS take a look these links:

  1. Direct Drive Access
  2. Create File
  3. Wikipedia Article on NTFS (The file system Windows 7 uses) Check the external links

What your looking to write is no trivial task, though that's what makes it interesting.

很酷不放纵 2024-09-08 18:43:25

您的意思是文件已删除(移至垃圾箱)还是从硬盘中删除(标记为替换)?如果您正在寻找第二个选项,我确信 Windows 不会提供任何解决方案。

Do you mean files deleted (moved to trash) or removed from the hdd (marked for replacement)? If you're looking for the second option, I'm quite sure Windows do not offer any solution to that.

婴鹅 2024-09-08 18:43:25

您必须手动分析磁盘上的数据,即通过读取原始磁盘内容并查找标记为已删除的文件。
一个好的开始是阅读您想要支持的文件系统的内部结构,因为您将需要它们。没有用于此目的的 API。

You will have to analyze the data on the disk manually, i.e. by reading the raw disk content and looking for files which are marked as deleted.
A good start would be reading into the internals of the filesystem(s) you want to support since you will need them. There is no API for that.

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