blob: 31e2e16c15c4d62ab1b31bb6361f97f094149c8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef FILE_FUNCTIONS_H
#define FILE_FUNCTIONS_H
#include <QDir>
#include <QFileInfo>
#include <QString>
#include <QCoreApplication>
bool file_exists(QString file_path);
bool dir_exists(QString file_path);
bool exists(QString p_path);
QString get_base_path();
#endif // FILE_FUNCTIONS_H
|