Qt判斷文件 或 文件夾(路徑)是否存在

1. 判斷文件夾是否是存在 參數說明: QString fullPath;//文件夾全路徑 /*方法1*/ bool isDirExist(QString fullPath) {     QDir dir(fullPath);     if(dir.exists())     {       return true;     }     return false; } /*方法2*/ bool i
相關文章
相關標籤/搜索