blob: 6937ed8ade6322fd9f26c404d4693233a6f41061 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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);
bool exists(QString p_path);
#endif // FILE_FUNCTIONS_H
|