| 52 | //----------------------------------------------------------------------------- |
| 53 | |
| 54 | static String buildFileName(const String& prefix,const Path& path) |
| 55 | { |
| 56 | // Need to join the path (minus the root) with our |
| 57 | // internal path name. |
| 58 | String file = prefix; |
| 59 | file = Path::Join(file,'/',path.getPath()); |
| 60 | file = Path::Join(file,'/',path.getFileName()); |
| 61 | file = Path::Join(file,'.',path.getExtension()); |
| 62 | return file; |
| 63 | } |
| 64 | |
| 65 | /* |
| 66 | static bool isFile(const String& file) |