MCPcopy Create free account
hub / github.com/ElementsProject/elements / AbsPathJoin

Function AbsPathJoin

src/fs.cpp:37–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35}
36
37fs::path AbsPathJoin(const fs::path& base, const fs::path& path)
38{
39 assert(base.is_absolute());
40 return path.empty() ? base : fs::path(base / path);
41}
42
43#ifndef WIN32
44

Callers 9

ExecuteWalletToolFuncFunction · 0.85
RestoreWalletFunction · 0.85
MakeWalletDatabaseFunction · 0.85
VerifyWalletsFunction · 0.85
BOOST_AUTO_TEST_CASEFunction · 0.85
dumptxoutsetFunction · 0.85
GetSettingsPathMethod · 0.85
AbsPathForConfigValFunction · 0.85

Calls 2

pathClass · 0.85
emptyMethod · 0.45

Tested by 1

BOOST_AUTO_TEST_CASEFunction · 0.68