MCPcopy Create free account
hub / github.com/bitcoin/bitcoin / AbsPathJoin

Function AbsPathJoin

src/util/fs.cpp:32–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30}
31
32fs::path AbsPathJoin(const fs::path& base, const fs::path& path)
33{
34 assert(base.is_absolute());
35 return path.empty() ? base : fs::path(base / path);
36}
37
38#ifndef WIN32
39

Callers 12

RestoreWalletFunction · 0.85
GetWalletPathFunction · 0.85
MigrateToSQLiteMethod · 0.85
VerifyWalletsFunction · 0.85
BOOST_AUTO_TEST_CASEFunction · 0.85
dumptxoutsetFunction · 0.85
exportasmapFunction · 0.85
GetSettingsPathMethod · 0.85
ReadConfigFilesMethod · 0.85
AbsPathForConfigValFunction · 0.85

Calls 2

pathClass · 0.70
emptyMethod · 0.45

Tested by 1

BOOST_AUTO_TEST_CASEFunction · 0.68