mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 00:26:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			188 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			188 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "fileops.hpp"
 | 
						|
#include <boost/filesystem.hpp>
 | 
						|
 | 
						|
bool isFile(const char *name)
 | 
						|
{
 | 
						|
  boost::filesystem::path cfg_file_path(name);
 | 
						|
  return boost::filesystem::exists(cfg_file_path);
 | 
						|
}
 |