blob: 252148fd0fa94d5f8be952d34773040e393189d1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
#include <QString>
bool file_exists(QString file_path);
bool dir_exists(QString file_path);
bool exists(QString p_path);
QString get_app_path();
QString get_base_path();
|