blob: 77e1c20b5619a237a3803b6b5b4bca1761b0d900 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef FILE_FUNCTIONS_H
#define FILE_FUNCTIONS_H
#include <QFileInfo>
#include <QDir>
#include <QString>
bool file_exists(QString file_path);
bool dir_exists(QString file_path);
#endif // FILE_FUNCTIONS_H
|