I want to monitor addition and renaming of files in Windows using C++. I searched on Google but cant find any useful info.
I am open to using Winapi , boost or Qt.
I want to monitor addition and renaming of files in Windows using C++. I searched on Google but cant find any useful info.
I am open to using Winapi , boost or Qt.
You can use File system watcher. See also:
which internally uses ReadDirectoryChangesW:
The solution in Qt would be QFileSystemWatcher.