用Qt写一段创建指定文件夹目录的代码
时间: 2023-12-28 14:05:33 浏览: 62
jQuery弹窗文件夹目录创建代码
可以使用QDir类来创建指定的文件夹目录,具体代码如下:
```cpp
#include <QDir>
#include <QDebug>
int main()
{
// 创建文件夹目录
QString dirPath = "C:/Users/username/Documents/myfolder";
QDir dir;
if (!dir.mkpath(dirPath)) {
qDebug() << "Failed to create directory: " << dirPath;
return -1;
}
qDebug() << "Directory created: " << dirPath;
return 0;
}
```
在上面的示例中,我们使用 `QDir::mkpath()` 方法创建指定路径的文件夹目录。如果创建成功,该方法将返回 true,否则将返回 false。如果创建失败,我们使用 `qDebug()` 函数输出一条错误信息。
阅读全文