How to check whether file exists in Qt in c++

C++QtFile Exists

C++ Problem Overview


How do I check whether a file exists in a given path or not in Qt?

My current code is below:

QFile Fout("/Users/Hans/Desktop/result.txt");
    
if(!Fout.exists()) 
{       
  eh.handleError(8);
}  
else
{
  // ......
}

But when I run the code it is not giving the error message specified in handleError even though the file I mentioned in the path does not exist.

C++ Solutions


Solution 1 - C++

(TL;DR at the bottom)

I would use the QFileInfo-class (docs) - this is exactly what it is made for:

> The QFileInfo class provides system-independent file information. > > QFileInfo provides information about a file's name and position (path) > in the file system, its access rights and whether it is a directory or > symbolic link, etc. The file's size and last modified/read times are > also available. QFileInfo can also be used to obtain information about > a Qt resource.

This is the source code to check whether a file exists:

#include <QFileInfo>

(don't forget to add the corresponding #include-statement)

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;
    }
}

Also consider: Do you only want to check if the path exists (exists()) or do you want to also make sure that this is a file and not a directory (isFile())?

Be careful: The documentation of the exists()-function says: > Returns true if the file exists; otherwise returns false. > > Note: If file is a symlink that points to a non-existing file, false is returned.

This is not precise. It should be: > Returns true if the path (i.e. file or directory) exists; otherwise returns false.


TL;DR

(with shorter version of the function above, saving a few lines of code)

#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 for Qt >=5.2

(using exists as a static which was introduce in Qt 5.2; the docs say the static function is faster, though I'm not sure this is still the case when also using the isFile() method; at least this is a one-liner then)

#include <QFileInfo>

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

Solution 2 - C++

You can use the QFileInfo::exists() method:

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

If you want it to return true only if the file exists and false if the path exists but is a folder, you can combine it with 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
}

Solution 3 - C++

The code you've posted is correct. Chances are that something else is wrong.

Try putting this:

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

inside of your handleError function. If the above message prints, you know something else is the problem.

Solution 4 - C++

That's how I check if the database exists:

#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 !";
}

With SQLite it's difficult to check if the database exists, because it automatically creates a new database if it doesn't exist.

Solution 5 - C++

I would skip using anything from Qt at all, and just use the old standard access:

if (0==access("/Users/Hans/Desktop/result.txt", 0))
    // it exists
else
    // it doesn't exist

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionuser1322915View Question on Stackoverflow
Solution 1 - C++mozzbozzView Answer on Stackoverflow
Solution 2 - C++Donald DuckView Answer on Stackoverflow
Solution 3 - C++AnthonyView Answer on Stackoverflow
Solution 4 - C++EsseteeView Answer on Stackoverflow
Solution 5 - C++Jerry CoffinView Answer on Stackoverflow