| 446 | // be interpolated by FindNextFile() |
| 447 | |
| 448 | bool 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 | |
| 460 | bool CLocatorAPI::RecurseScanPhysicalPath(const char* path, const bool log_if_found, bool bNoRecurse) |
| 461 | { |
no test coverage detected