Qt判断文件夹不存在则创建
时间: 2023-06-22 09:20:42 浏览: 77
php判断文件夹是否存在不存在则创建
可以使用`QDir`类的`mkpath`方法来实现。
示例代码如下:
```cpp
#include <QDir>
// 检查文件夹是否存在,如果不存在则创建
void createFolderIfNotExists(const QString &folderPath)
{
QDir folder(folderPath);
if (!folder.exists()) {
folder.mkpath(".");
}
}
```
使用方法:
```cpp
createFolderIfNotExists("/path/to/folder");
```
这样就可以判断文件夹是否存在,如果不存在则创建了。
阅读全文