Hi ,

i am using QFileSystemWatcher to monitor some set of user defined folders. whenever a new file added into those folders i want to process those new files.

It seems that QFileSystemWatcher does not monitor the inner subfolders , which i want to achieve. Adding all of the folders in a given folder to the watchList seperately seems very ineffective and hard way of doing this, (especially updating myWatchList in case of adding a large folder into my already-monitored folders)

Is there any way of making this class to monitor folders recursively (including subfolders.)

thanks..