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