如何访问 NTFS 主文件 Table (MFT)?
How do I access NTFS Master File Table (MFT)?
有什么方法可以访问 Python 或 JavaScript 中的 NTFS 主文件 Table (MFT)?
您需要一个库来分析来自 NTFS 文件系统的主文件 Table ($MFT)。
对于 Python,pip 上有 analyzeMFT(当前版本 2.0.19)。
analyzeMFT.py is designed to fully parse the MFT file from an NTFS
filesystem and present the results as accurately as possible in
multiple formats.
pip install analyzeMFT
对于 JavaScript 我不能说得很清楚,但我想你可以使用这个 node.js ntfs 包来读取和解析 NTFS $MFT。
$ npm install --save ntfs
有什么方法可以访问 Python 或 JavaScript 中的 NTFS 主文件 Table (MFT)?
您需要一个库来分析来自 NTFS 文件系统的主文件 Table ($MFT)。
对于 Python,pip 上有 analyzeMFT(当前版本 2.0.19)。
analyzeMFT.py is designed to fully parse the MFT file from an NTFS filesystem and present the results as accurately as possible in multiple formats.
pip install analyzeMFT
对于 JavaScript 我不能说得很清楚,但我想你可以使用这个 node.js ntfs 包来读取和解析 NTFS $MFT。
$ npm install --save ntfs