We can at least use C++17's filesystem library to give an initial warning when a file is loaded that can't be found. Perhaps make a utility function that tries to return a file to read from but gives a message about not finding it in std::filesystem::current_path() or some such that'll help folks fix their own positioning issues.
We can at least use C++17's filesystem library to give an initial warning when a file is loaded that can't be found. Perhaps make a utility function that tries to return a file to read from but gives a message about not finding it in
std::filesystem::current_path()or some such that'll help folks fix their own positioning issues.