mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-20 07:23:51 +00:00
13 lines
181 B
C++
13 lines
181 B
C++
|
#include "fileops.hpp"
|
||
|
#include <boost/filesystem.hpp>
|
||
|
|
||
|
namespace Files
|
||
|
{
|
||
|
|
||
|
bool isFile(const char *name)
|
||
|
{
|
||
|
return boost::filesystem::exists(boost::filesystem::path(name));
|
||
|
}
|
||
|
|
||
|
}
|