00001 #if 0
00002
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #ifndef NL_PATH_H
00028 #define NL_PATH_H
00029
00030 #include "nel/misc/types_nl.h"
00031 #include "nel/misc/common.h"
00032 #include <string>
00033 #include <vector>
00034
00035
00036 namespace NLMISC {
00037
00038
00040 typedef std::vector<std::string> CStringVector;
00041
00042
00043
00044 struct EPathNotFound : public Exception
00045 {
00046 EPathNotFound( const std::string& filename ) : Exception( "Path not found for " + filename ) {}
00047 };
00048
00049
00056 class CPath
00057 {
00058 public:
00059
00061 static void addSearchPath( const std::string& path );
00062
00067 static std::string lookup( const std::string& filename, bool throwException = true );
00068
00069 private:
00070
00071 static CStringVector _SearchPaths;
00072 };
00073
00074
00081 struct CFile
00082 {
00087 static std::string getFilename (const std::string &filename);
00088
00093 static std::string getPath (const std::string &filename);
00094
00099 static bool isDirectory (const std::string &filename);
00100
00106 static bool fileExists (const std::string &filename);
00107
00113 static std::string findNewFile (const std::string &filename);
00114
00119 static int getLastSeparator (const std::string &filename);
00120 };
00121
00122
00123 }
00124
00125
00126 #endif // NL_PATH_H
00127
00128
00129 #endif