eive-obsw/bsp_q7s/memory/helpers.cpp
Robin Mueller 38f435d1ae
Some checks are pending
EIVE/eive-obsw/pipeline/head Build started...
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
update for new FSFW code
2022-09-16 11:43:11 +02:00

9 lines
297 B
C++

#include "helpers.h"
std::filesystem::path fshelpers::buildPrefixedPath(SdCardManager &man,
std::filesystem::path pathWihtoutPrefix) {
auto prefix = man.getCurrentMountPrefix();
auto resPath = prefix / pathWihtoutPrefix;
return resPath;
}