10 lines
172 B
C
10 lines
172 B
C
#ifndef FILE_FUNCTIONS_H
|
|
#define FILE_FUNCTIONS_H
|
|
|
|
#include <QString>
|
|
|
|
bool file_exists(QString file_path);
|
|
bool dir_exists(QString file_path);
|
|
|
|
#endif // FILE_FUNCTIONS_H
|