| 861 | } |
| 862 | |
| 863 | bool MountSystem::mapFSPath( const String &inRoot, const Path &inPath, Path &outPath ) |
| 864 | { |
| 865 | FileSystemRef fs = _getFileSystemFromList(inRoot); |
| 866 | |
| 867 | if ( fs == NULL ) |
| 868 | { |
| 869 | outPath = Path(); |
| 870 | return false; |
| 871 | } |
| 872 | |
| 873 | outPath = fs->mapFrom( inPath ); |
| 874 | |
| 875 | return outPath.getFullPath() != String(); |
| 876 | } |
| 877 | |
| 878 | S32 MountSystem::findByPattern( const Path &inBasePath, const String &inFilePattern, bool inRecursive, Vector<String> &outList, bool includeDirs/* =false */, bool multiMatch /* = true */ ) |
| 879 | { |