|
Public Member Functions |
| | HttpArchive (const String &name, const String &archType) |
| | ~HttpArchive () |
| bool | isCaseSensitive (void) const |
| void | load () |
| void | unload () |
| DataStreamPtr | open (const String &filename) const |
| StringVectorPtr | list (bool recursive=true) |
| FileInfoListPtr | listFileInfo (bool recursive=true) |
| StringVectorPtr | find (const String &pattern, bool recursive=true) |
| FileInfoListPtr | findFileInfo (const String &pattern, bool recursive=true) |
| bool | exists (const String &filename) |
Protected Types |
| typedef std::deque< String > | DirectoryStack |
| | Directory stack of previous directories.
|
Protected Member Functions |
| void | findFiles (const String &pattern, bool recursive, StringVector *simpleList, FileInfoList *detailList, const String ¤tDir="") |
| | Utility method to retrieve all files in a directory matching pattern.
|
| void | changeDirectory (const String &dir) const |
| | Utility method to change the current directory.
|
| void | pushDirectory (const String &dir) const |
| | Utility method to change directory and push the current directory onto a stack.
|
| void | popDirectory (void) const |
| | Utility method to pop a previous directory off the stack and change to it.
|
Protected Attributes |
| String | mBasePath |
| | Base path; actually the same as mName, but for clarity.
|
| DirectoryStack | mDirectoryStack |
| char | mTmpPath [OGRE_MAX_PATH] |
| | temporary C-string to retrieve paths
|