mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-10-04 18:41:45 -04: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));
|
|
}
|
|
|
|
}
|