Здравствуйте.Столкнулся с проблемой при использовании класса QFileSystemWatcher для отслеживания добавления файлов в директорию. Вот код:Код://в конструктореpFileWatcher = new QFileSystemWatcher(this);pFileWatcher->addPath(directoryPath);connect(pFileWat cher,SIGNAL(directoryChanged(QString)), this, SLOT(receivedFile(QString)));//в слотеvoid Agent::receivedFile(QString filePath){ qDebug()
|