Qfile::exists()判断文件夹是否存在
时间: 2024-01-09 15:05:50 浏览: 419
判断文件夹或文件是否存在
4星 · 用户满意度95%
Qfile::exists()是Qt框架中的一个方法,用于判断文件或文件夹是否存在。如果要判断文件夹是否存在,可以将文件夹路径作为参数传入该方法。例如:
```cpp
QString path = "/home/user/Documents";
if(QDir(path).exists()){
qDebug() << "The directory exists!";
} else {
qDebug() << "The directory does not exist!";
}
```
上述代码会判断"/home/user/Documents"文件夹是否存在,如果存在则输出"The directory exists!",否则输出"The directory does not exist!"。
阅读全文