如何在c ++中检查Qt中是否存在文件

问题描述 投票:70回答:5

如何在Qt中检查给定路径中是​​否存在文件?

我目前的代码如下:

QFile Fout("/Users/Hans/Desktop/result.txt");

if(!Fout.exists()) 
{       
  eh.handleError(8);
}  
else
{
  // ......
}

但是当我运行代码时,即使我在路径中提到的文件不存在,它也没有给出handleError中指定的错误消息。

c++ qt file-exists
5个回答
90
投票

(TL; DR在底部)

我会使用QFileInfo-class(docs) - 这正是它的用途:

QFileInfo类提供与系统无关的文件信息。

QFileInfo提供有关文件系统中文件名称和位置(路径)的信息,其访问权限以及是否是目录或符号链接等。文件的大小和上次修改/读取时间也可用。 QFileInfo还可用于获取有关Qt资源的信息。

这是检查文件是否存在的源代码:

#include <QFileInfo>

(别忘了添加相应的#include语句)

bool fileExists(QString path) {
    QFileInfo check_file(path);
    // check if file exists and if yes: Is it really a file and no directory?
    if (check_file.exists() && check_file.isFile()) {
        return true;
    } else {
        return false;
    }
}

还要考虑:您是否只想检查路径是否存在(exists())还是要确保这是一个文件而不是目录(isFile())?

小心:exists()函数的文档说:

如果文件存在,则返回true;否则返回false。

注意:如果file是指向不存在的文件的符号链接,则返回false。

这不准确。它应该是:

如果路径(即文件或目录)存在,则返回true;否则返回false。


TL; DR

(使用上面函数的较短版本,保存几行代码)

#include <QFileInfo>

bool fileExists(QString path) {
    QFileInfo check_file(path);
    // check if path exists and if yes: Is it really a file and no directory?
    return check_file.exists() && check_file.isFile();
}

TL; DR为Qt> = 5.2

(使用exists作为static,在Qt 5.2中引入;文档说静态函数更快,虽然我不确定在使用isFile()方法时仍然如此;至少这是一个单线程然后)

#include <QFileInfo>

// check if path exists and if yes: Is it a file and no directory?
bool fileExists = QFileInfo::exists(path) && QFileInfo(path).isFile();

11
投票

您可以使用QFileInfo::exists()方法:

#include <QFileInfo>
if(QFileInfo("C:\\exampleFile.txt").exists()){
    //The file exists
}
else{
    //The file doesn't exist
}

如果你希望它只在文件存在时返回truefalse如果路径存在但是是一个文件夹,你可以将它与QDir::exists()组合:

#include <QFileInfo>
#include <QDir>
QString path = "C:\\exampleFile.txt";
if(QFileInfo(path).exists() && !QDir(path).exists()){
    //The file exists and is not a folder
}
else{
    //The file doesn't exist, either the path doesn't exist or is the path of a folder
}

8
投票

您发布的代码是正确的。有可能出现其他问题。

试试这个:

qDebug() << "Function is being called.";

在handleError函数内部。如果打印上面的消息,您知道其他问题。


4
投票

这就是我检查数据库是否存在的方法:

#include <QtSql>
#include <QDebug>
#include <QSqlDatabase>
#include <QSqlError>
#include <QFileInfo>

QString db_path = "/home/serge/Projects/sqlite/users_admin.db";

QSqlDatabase db = QSqlDatabase::addDatabase("QSQLITE");
db.setDatabaseName(db_path);

if (QFileInfo::exists(db_path))
{
    bool ok = db.open();
    if(ok)
    {
        qDebug() << "Connected to the Database !";
        db.close();
    }
}
else
{
    qDebug() << "Database doesn't exists !";
}

使用SQLite很难检查数据库是否存在,因为如果它不存在,它会自动创建一个新数据库。


1
投票

我会跳过使用Qt的任何东西,只使用旧的标准access

if (0==access("/Users/Hans/Desktop/result.txt", 0))
    // it exists
else
    // it doesn't exist
© www.soinside.com 2019 - 2024. All rights reserved.