| 2433 | } |
| 2434 | |
| 2435 | static void GetStat(BfpFindFileData* findData) |
| 2436 | { |
| 2437 | if (findData->mHasStat) |
| 2438 | return; |
| 2439 | |
| 2440 | Beefy::String filePath = findData->mDirPath + "/" + findData->mDirEnt->d_name; |
| 2441 | |
| 2442 | findData->mStat = { 0 }; |
| 2443 | int result = stat(filePath.c_str(), &findData->mStat); |
| 2444 | |
| 2445 | findData->mHasStat = true; |
| 2446 | } |
| 2447 | |
| 2448 | static bool BfpFindFileData_CheckFilter(BfpFindFileData* findData) |
| 2449 | { |
no test coverage detected