Trying to get MFT table from Python 3
问题 I try to read MFT table from my local disk from python. Of course, if I write something like this: input_file = open('C:\$MFT', "rb") I will get [ Errno 13] Permission denied: 'C:\$MFT' I tried to use pyMFTGrabber, but it doesn't work; I got a lot of "socket.errors". What the best and easy way to read this file, using Python? Maybe it is some WinAPI, or something else? After reading I want to analyze it with "analyzeMFT" 回答1: It's rather painful with python, since it's not exactly low-level.