| 3 | USING_NS_BF; |
| 4 | |
| 5 | String FileEnumeratorEntry::GetFilePath() const |
| 6 | { |
| 7 | char outName[4096]; |
| 8 | int outSize = 4096; |
| 9 | BfpFindFileData_GetFileName(mFindData, outName, &outSize, NULL); |
| 10 | return mDirPath + "/" + outName; |
| 11 | } |
| 12 | |
| 13 | String FileEnumeratorEntry::GetFileName() const |
| 14 | { |
no test coverage detected