#include "aare/helpers.hpp" namespace aare { bool is_master_file(std::filesystem::path fpath) { std::string stem = fpath.stem(); if (stem.find("_master_") != std::string::npos) return true; else return false; } }// namespace aare