MCPcopy Create free account
hub / github.com/comaps/comaps / GetFullFilePathsByExt

Function GetFullFilePathsByExt

generator/platform_helpers.cpp:13–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11namespace platform_helpers
12{
13std::vector<std::string> GetFullFilePathsByExt(std::string const & dir, std::string const & ext)
14{
15 std::vector<std::string> result;
16 Platform::GetFilesByExt(dir, ext, result);
17 for (auto & p : result)
18 p = base::JoinPath(dir, p);
19
20 return result;
21}
22
23std::vector<std::string> GetFullDataTmpFilePaths(std::string const & dir)
24{

Callers 1

GetFullDataTmpFilePathsFunction · 0.85

Calls 1

JoinPathFunction · 0.85

Tested by

no test coverage detected