Robin Mueller
6b48fb64d8
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
9 lines
293 B
C++
9 lines
293 B
C++
#include "helpers.h"
|
|
|
|
std::filesystem::path fshelpers::getPrefixedPath(SdCardManager &man,
|
|
std::filesystem::path pathWihtoutPrefix) {
|
|
auto prefix = man.getCurrentMountPrefix();
|
|
auto resPath = prefix / pathWihtoutPrefix;
|
|
return resPath;
|
|
}
|