views:

198

answers:

2

Is there a way to access file system info via some type of Windows API? If not what other methods are available to a user mode developer?

+2  A: 

Not very clean, but you can use DeviceIoControl() Open volume as a file, pass resulting handle to DeviceIoControl() together with control code. Check MSDN for control codes, there is something like "read journal record".

ima
A: 

Thanks, from another post someone recommended this link

Brian R. Bondy