CEBL  2.1
FileUtils.cpp
Go to the documentation of this file.
1 
8 #include "FileUtils.hpp"
9 
10 #define BOOST_FILESYSTEM_VERSION 2
11 #include <boost/filesystem/operations.hpp>
12 #include <boost/filesystem/convenience.hpp>
13 #include <boost/filesystem/fstream.hpp>
14 #include <boost/filesystem/path.hpp>
15 
16 
17 bool FileUtils::fileExists(string filename)
18  {
19  return boost::filesystem::exists(filename);
20  }
21