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 #if !defined _hyp_dir_h_
00028 #define _hyp_dir_h_
00029
00030 #ifndef hyp_KERNEL_CORE_INSIDE
00031 #error Inclusion not allowed (include hyp.kernel.core.h instead)
00032 #endif
00033
00034
00035
00036 class hyp_ker_DLL CDir {
00037 #ifdef hyp_WIN32
00038 std::string m_Path;
00039 HANDLE m_H;
00040 WIN32_FIND_DATA m_FD;
00041 #endif
00042 std::string m_Pattern;
00043 std::string GetFullName(const std::string&);
00044 public:
00045 CDir();
00046 virtual ~CDir();
00047 std::string Search();
00048 void Rewind(const std::string& ="*");
00049 void Open(const std::string&,bool =false);
00050 bool IsSubDir();
00051 bool IsInDir(const std::string&,bool =false);
00052 void CreateFile(const std::string&) const;
00053 void DeleteFile(const std::string&) const;
00054 std::string GetPath() const;
00055 };
00056
00057
00058 #endif