We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be10273 commit a175012Copy full SHA for a175012
src/xrCore/LocatorAPI.cpp
@@ -551,6 +551,11 @@ bool CLocatorAPI::Recurse (const char* path)
551
{
552
string_path scanPath;
553
xr_strcpy(scanPath, sizeof(scanPath), path);
554
+ xr_strcat(scanPath, ".xrignore");
555
+ struct stat buffer;
556
+ if (!stat(scanPath, &buffer))
557
+ return true;
558
+ xr_strcpy(scanPath, sizeof(scanPath), path);
559
xr_strcat(scanPath, "*.*");
560
_finddata_t findData;
561
intptr_t handle = _findfirst(scanPath, &findData);
0 commit comments