#include "storage/storage_config.hpp" #include "util/log.hpp" #include namespace osrm { namespace storage { namespace { bool CheckFileList(const std::vector &files) { bool success = true; for (auto &path : files) { if (!boost::filesystem::exists(path)) { util::Log(logERROR) << "Missing File: " << path.string(); success = false; } } return success; } } } }