Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040 #ifndef __CXUTILS_FILE_FINDER_H
00041 #define __CXUTILS_FILE_FINDER_H
00042
00043 #include <vector>
00044 #include <string>
00045 #include "cxbase.h"
00046
00047 namespace CxUtils
00048 {
00063 class CX_UTILS_DLL FileFinder
00064 {
00065 public:
00066 FileFinder();
00067 FileFinder(const std::string& iniFile);
00068 ~FileFinder();
00069 bool AddResourcePath(const std::string& path);
00070 void LoadIniFile(const std::string& iniFile = "resource_paths.ini");
00071 bool RemoveResourcePath(const std::string& path);
00072 bool GetRecursionFlag() const;
00073 void SetRecursionFlag(const bool recursionFlag);
00074 std::string GetFilePath(const std::string& fileName) const;
00075 private:
00076 void GetFilePathHelper(const std::string& rootPath,
00077 const std::string& fileName,
00078 std::string &filePath) const;
00079 std::vector<std::string> mResourcePaths;
00080 bool mRecursionFlag;
00081 };
00082 }
00083 #endif
00084
00085