eive-obsw/bsp_q7s/memory/helpers.cpp

9 lines
297 B
C++
Raw Normal View History

2022-09-16 11:43:11 +02:00
#include "helpers.h"
std::filesystem::path fshelpers::buildPrefixedPath(SdCardManager &man,
std::filesystem::path pathWihtoutPrefix) {
auto prefix = man.getCurrentMountPrefix();
auto resPath = prefix / pathWihtoutPrefix;
return resPath;
}