blob: a191d67f8366e53e6869360983a4190dff785889 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <QFileInfo>
#include "file_functions.h"
bool file_exists(QString file_path)
{
QFileInfo check_file(file_path);
return check_file.exists() && check_file.isFile();
}
|