MCPcopy Create free account
hub / github.com/ariccio/altWinDirStat / concatpath

Function concatpath

Reference code/osImageTool/XDAOSImageWriter.cpp:37–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35 return true;
36}
37string concatpath(const string& path1, const string& path2)
38{
39 string path= path1;
40
41 if (*(path.rbegin()) != '/' && *(path.rbegin()) != '\\')
42 path += '\\';
43
44 path += path2;
45 return path;
46}
47bool FindNBFDirectory(const string& basedir, string& directory)
48{
49 WIN32_FIND_DATA wfd;

Callers 1

FindNBFDirectoryFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected