11 lines
180 B
C++
11 lines
180 B
C++
#include <QFileInfo>
|
|
|
|
#include "file_functions.h"
|
|
|
|
bool file_exists(QString file_path)
|
|
{
|
|
QFileInfo check_file(file_path);
|
|
|
|
return check_file.exists() && check_file.isFile();
|
|
}
|