mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 06:39:49 +00:00
13 lines
239 B
C++
13 lines
239 B
C++
#include "fileops.hpp"
|
|
#include <boost/filesystem.hpp>
|
|
#include <string>
|
|
|
|
#include <OgrePrerequisites.h>
|
|
|
|
bool isFile(const char *name)
|
|
{
|
|
boost::filesystem::path cfg_file_path(name);
|
|
return boost::filesystem::exists(cfg_file_path);
|
|
}
|
|
|