Update io_config.cpp
This commit is contained in:
parent
cc8ded73d0
commit
c1b31e8f5d
@ -17,7 +17,8 @@ bool IOConfig::IsValid() const
|
|||||||
bool success = true;
|
bool success = true;
|
||||||
for (auto &fileName : required_input_files)
|
for (auto &fileName : required_input_files)
|
||||||
{
|
{
|
||||||
if (!fs::is_regular_file(fs::status(base_path.string() + fileName.string())))
|
if (!boost::filesystem::is_regular_file(
|
||||||
|
boost::filesystem::path(base_path.string() + fileName.string())))
|
||||||
{
|
{
|
||||||
util::Log(logWARNING) << "Missing/Broken File: " << base_path.string()
|
util::Log(logWARNING) << "Missing/Broken File: " << base_path.string()
|
||||||
<< fileName.string();
|
<< fileName.string();
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user