摘要: 1. 判断文件夹是不是存在 1 QString fullPath;//文件夹全路径 2 /*方法1*/ 3 bool isDirExist(QString fullPath) 4 { 5 QDir dir(fullPath); 6 if(dir.exists()) 7 { 8 return true 阅读全文
posted @ 2021-12-20 11:21 阳光下的小土豆 阅读(2342) 评论(0) 推荐(0) 编辑