| 1213 | } |
| 1214 | |
| 1215 | bool GetFSPath( const Path &inPath, Path &outPath ) |
| 1216 | { |
| 1217 | FileSystemRef sys = GetFileSystem( inPath ); |
| 1218 | if ( sys ) |
| 1219 | { |
| 1220 | outPath = sys->mapTo( inPath ); |
| 1221 | return true; |
| 1222 | } |
| 1223 | |
| 1224 | return false; |
| 1225 | } |
| 1226 | |
| 1227 | S32 FindByPattern( const Path &inBasePath, const String &inFilePattern, bool inRecursive, Vector<String> &outList, bool multiMatch ) |
| 1228 | { |
no test coverage detected