MCPcopy Create free account
hub / github.com/EasyRPG/Player / GetFullFilesystemPath

Method GetFullFilesystemPath

src/filefinder.cpp:574–582  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

572}
573
574std::string FileFinder::GetFullFilesystemPath(FilesystemView fs) {
575 FilesystemView cur_fs = fs;
576 std::string full_path;
577 while (cur_fs) {
578 full_path = MakePath(cur_fs.GetFullPath(), full_path);
579 cur_fs = cur_fs.GetOwner().GetParent();
580 }
581 return full_path;
582}
583
584void FileFinder::DumpFilesystem(FilesystemView fs) {
585 FilesystemView cur_fs = fs;

Callers

nothing calls this directly

Calls 2

GetFullPathMethod · 0.80
GetParentMethod · 0.80

Tested by

no test coverage detected