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

Function ignore_name

ogsr_engine/xrCore/LocatorAPI.cpp:426–442  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

424}
425
426bool ignore_name(const char* _name)
427{
428 if (!strcmp(_name, "."))
429 return true;
430 if (!strcmp(_name, ".."))
431 return true;
432
433 // ignore windows hidden Thumbs.db
434 if (!strcmp(_name, "Thumbs.db"))
435 return true;
436
437 // ignore processing ".svn" folders
438 if (!strcmp(_name, ".svn"))
439 return true;
440
441 return false;
442}
443
444// we need to check for file existance
445// because Unicode file names can

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected