qdir::exists
时间: 2023-11-17 19:02:01 浏览: 120
QtQuickApp:演示Qt Quick应用程序,可与linuxdeployqt一起使用
QDir::exists是一个Qt库中的函数,用于判断指定路径是否存在。该函数的定义如下:
```cpp
bool QDir::exists(const QString &path) const
```
其中,path参数为需要判断的路径,可以是相对路径或绝对路径。如果路径存在,则返回true,否则返回false。
该函数可以用于判断文件或目录是否存在,例如:
```cpp
QDir dir("/path/to/dir");
if (dir.exists()) {
// 目录存在
}
QFile file("/path/to/file");
if (file.exists()) {
// 文件存在
}
```
阅读全文