mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-11-04 15:27:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			239 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			239 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "fileops.hpp"
 | 
						|
#include <boost/filesystem.hpp>
 | 
						|
#include <string>
 | 
						|
 | 
						|
#include <OgrePrerequisites.h>
 | 
						|
 | 
						|
bool isFile(const char *name)
 | 
						|
{
 | 
						|
  boost::filesystem::path cfg_file_path(name);
 | 
						|
  return boost::filesystem::exists(cfg_file_path);
 | 
						|
}
 | 
						|
 |