当前位置:   article > 正文

Qt 之 QFileSystemWatcher_qfilesystemwatcher::removepaths: list is empty

qfilesystemwatcher::removepaths: list is empty
  1. if (!newFile.isEmpty() && !deleteFile.isEmpty())
  2. {
  3. // 文件/目录重命名
  4. if ((newFile.count() == 1) && (deleteFile.count() == 1))
  5. {
  6. qDebug() << QString("File Renamed from %1 to %2").arg(deleteFile.first()).arg(newFile.first());
  7. }
  8. }
  9. else
  10. {
  11. // 添加新文件/目录至Dir
  12. if (!newFile.isEmpty())
  13. {
  14. qDebug() << "New Files/Dirs added: " << newFile;
  15. foreach (QString file, newFile)
  16. {
  17. // 处理操作每个新文件....
  18. //QMessageBox::warning(NULL, "警告弹窗", "数据存储故障", QMessageBox::Yes, QMessageBox::Yes);
  19. }
  20. }
  21. else
  22. {
  23. QMessageBox::warning(NULL, "警告弹窗", "数据存储故障", QMessageBox::Yes, QMessageBox::Yes);
  24. }
  25. // 从Dir中删除文件/目录
  26. if (!deleteFile.isEmpty())
  27. {
  28. qDebug() << "File
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/115000
推荐阅读
相关标签
  

闽ICP备14008679号