mirror of
https://github.com/slsdetectorgroup/aare.git
synced 2026-02-02 09:24:54 +01:00
new folder structure
This commit is contained in:
11
file_io/src/helpers.cpp
Normal file
11
file_io/src/helpers.cpp
Normal file
@@ -0,0 +1,11 @@
|
||||
#include "aare/helpers.hpp"
|
||||
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user