mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 15:39:02 +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));
|
||
|
}
|
||
|
|
||
|
}
|