MCPcopy Create free account
hub / github.com/OGSR/OGSR-Engine / ignore_path

Function ignore_path

ogsr_engine/xrCore/LocatorAPI.cpp:448–458  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

446// be interpolated by FindNextFile()
447
448bool ignore_path(const char* _path) // _path can be a file or a folder
449{
450 struct stat file_info;
451
452 if (stat(_path, &file_info) == 0)
453{
454 return false;
455 }
456
457 return true;
458}
459
460bool CLocatorAPI::RecurseScanPhysicalPath(const char* path, const bool log_if_found, bool bNoRecurse)
461{

Callers 1

Calls 1

statClass · 0.70

Tested by

no test coverage detected