blob: ca1eeb5ecd55374db0884e0812912d65186d44fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include <QCoreApplication>
#include <QDir>
#include <QFileInfo>
#include <QString>
bool file_exists(QString file_path);
bool dir_exists(QString file_path);
bool exists(QString p_path);
QString get_base_path();
|