How to read file table of main ntfs files using C ++

I want to list all the files on disk. I use WinAPI FindFirst / FindNext for listing. But this method takes a lot of time. I read somewhere that we can list very quickly by reading the table of the main ntfs files, which contains all the information about each file on the disk. Is there any API or any method in C ++ for reading the ntfs main table?

+4
source share
1 answer

There is no C ++ library library that will be OS specific, as this will not work on other platforms or other file systems.

, , - Windows API, std ++.

NTFS Linux, Linux.

0

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


All Articles