File system information - how to request it?

Is there a way to access file system information through some type of Windows API? If other methods are not available for user mode developers?

+3
source share
2 answers

Not very clean, but you can use DeviceIoControl() Open the volume as a file, pass the resulting descriptor DeviceIoControl()along with the control code. Check the MSDN for control codes, there is something like "read the log entry".

+2
source

In another post, someone recommended this: Keep track of your NTFS drives: Windows 2000 Change Log is explained .

, NTFS ++ Windows 2000. .

0

Source: https://habr.com/ru/post/1696806/


All Articles