atrooney-online-2/file_functions.cpp
David Skoland ca732f27a1 -
2017-01-01 16:14:29 +01:00

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();
}