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