Hi all I want to use QFileSystemWatcher
to watch changes of a given directory and its subdirectory recursively, but void QFileSystemWatcher::addPath ( const QString & path )
didn't let me do it so is there any idea to do it easily or I should implement it by my self (extract all directories and subdirectories and files under to added with void QFileSystemWatcher::addPaths ( const QStringList & paths )
)?
Any help will be appreciated.
Thank you in advance.