I'm using QFileSystemWatcher
for watching for changes in a directory that I set in watcher->addPath("myPath")
method.
When I call watcher->directories()
I see myPath
.
But when I call watcher->files()
I see nothing. I thought I will see files in directory when I use this method.
What should I do to see files in a directory?