1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-21 11:23:51 +00:00
openmw-tes3mp/components/misc/fileops.cpp

17 lines
259 B
C++
Raw Normal View History

2010-06-03 19:51:59 +00:00
#include "fileops.hpp"
#include <boost/filesystem.hpp>
#include <string>
2011-03-09 17:50:24 +00:00
#include <OgrePrerequisites.h>
namespace Misc
{
bool isFile(const char *name)
{
boost::filesystem::path cfg_file_path(name);
return boost::filesystem::exists(cfg_file_path);
2010-06-03 19:51:59 +00:00
}
}