ffscoex.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. #ifndef __FFSCOEX_H__
  2. //#if !defined(__FFSCOEX_H__)
  3. #define __FFSCOEX_H__
  4. #ifndef WIN32
  5. #error now only for WIN32(platform).
  6. #endif
  7. //#include <iostream>
  8. //#include <algorithm>
  9. #include <string>
  10. #include <vector>
  11. #include <sstream>
  12. using namespace std;
  13. #pragma warning(disable:4786)
  14. namespace helper_coffs
  15. {
  16. typedef struct SFileInfo : public WIN32_FIND_DATA
  17. {
  18. string strRootDir; //主目录,如:\\127.0.0.1\客户原片(管理软件)$
  19. string strChildDir; //子目录,如:1234.ly.com\\20151010-001\\新生儿
  20. string strAllPath; //全路径,如:\\127.0.0.1\客户原片(管理软件)$\1234.ly.com\\20151010-001\\新生儿\001.jpg
  21. }SFILEINFO, *LPSFILEINFO;
  22. const int max_limit = 0x100000; //--1048576
  23. const int def_limit = 0x10000; //--65536
  24. const char c_pathSeparator = '\\';
  25. const string s_pathSeparator = "\\";
  26. //--find files collection
  27. class ffscoex
  28. {
  29. public:
  30. typedef vector<LPSFILEINFO> typeT;
  31. public:
  32. ffscoex();
  33. virtual ~ffscoex();
  34. virtual int match(IN string fext_, IN string file_); //--文件匹配检测
  35. int find(IN string path_, IN string fext_ = "");
  36. LPSFILEINFO get(IN int i = 0) { return _co.at(i); }
  37. int count() { return _co.size(); }
  38. typeT& co() { return _co; }
  39. typeT& co_dir() { return _co_dir; }
  40. typeT& co_file() { return _co_file; }
  41. int limit() { return _limit; }
  42. void limit(IN int limit_); //--设置结果文件数目上限
  43. int dirs() { return _dirs; } //get
  44. void dirs(IN int dirs) { _dirs = dirs; } //--set 1:查找子目录; 0:不查找子目录
  45. int dir(IN string& s); //--判断s是否为目录
  46. int deldir(IN LPCTSTR lpDir);
  47. void Clear();
  48. private:
  49. inline string _uppercase_(IN string& s); //--转换s到大写字母
  50. void recursivefind(IN const string& root_, IN string path_, IN string fext_);
  51. private:
  52. int _limit; //--limit
  53. int _dirs; //--dirs-是否查找子目录(默认0-不查找)
  54. string _strroot; //find函数传入的目录路径为根目录
  55. typeT _co_file;
  56. typeT _co_dir;
  57. typeT _co;
  58. };
  59. }; //--namespace helper_coffs
  60. #endif //--__FFSCO__