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