8#include <boost/version.hpp>
9#if BOOST_VERSION >= 103500
10#include <boost/filesystem.hpp>
12#include <boost/filesystem/path.hpp>
13#include <boost/filesystem/operations.hpp>
18namespace boostfs = boost::filesystem;
26 boostfs::path lPath (iFilepath);
28 if (boostfs::exists (lPath) ==
false) {
32#if BOOST_VERSION >= 103500
33 if (boostfs::is_regular_file (lPath) ==
true) {
static bool doesExistAndIsReadable(const std::string &iFilepath)