findfile.cpp 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089
  1. #include "StdAfx.h"
  2. #include "findfile.h"
  3. namespace filekernel
  4. {
  5. findfile::findfile(void)
  6. {
  7. m_nlimit = nDefLimit;
  8. m_pvtfiles = NULL;
  9. m_pvtnames = NULL;
  10. m_pvtfolders = NULL;
  11. m_pvtnames_noext = NULL;
  12. }
  13. findfile::~findfile(void)
  14. {
  15. }
  16. /************************************************************************/
  17. /*
  18. 函数:iscorrectext
  19. 描述:判断指定的后缀串是否有效;
  20. 参数:
  21. IN: fext 输入的扩展名:
  22. fext的格式必须是:_T("*.jpg|*.jpeg|*.png|*.bmp")
  23. IN lpMistakenExt 不符合要求的扩展名;
  24. 返回:如果指定的扩展名符合要求,则返回TRUE,否则返回FALSE;
  25. 注意:
  26. 1.如果传入的扩展名包含_T("*.*"),则返回TRUE;若lpMistakenExt指针有效,记录第一次返回不符合要求的扩展名;
  27. 2.fext的格式必须是:_T("*.jpg|*.jpeg|*.png|*.bmp")
  28. */
  29. /************************************************************************/
  30. BOOL findfile::iscorrectext(IN const TString &fext, OUT TString* lpMistakenExt /*= NULL*/)
  31. {
  32. if (fext.size() == 0) return FALSE;
  33. if (fext.find(_T("*.*")) != TString::npos) return TRUE;
  34. TString ext = lowercase(fext);
  35. if (ext[ext.length() - 1] != _T('|'))
  36. ext.append(g_sVertical);
  37. BOOL bret = TRUE;
  38. int nIndex = 0;
  39. do
  40. {
  41. nIndex = ext.find(_T('|'));
  42. if (nIndex != TString::npos)
  43. {
  44. if (g_sCorrectExt.find(ext.substr(0, nIndex)) == TString::npos)
  45. {
  46. if (lpMistakenExt)
  47. *lpMistakenExt = ext.substr(0, nIndex);
  48. bret = FALSE;
  49. break;
  50. }
  51. ext = ext.substr(nIndex + 1);
  52. }
  53. } while (ext.find(_T('|')) != TString::npos);
  54. return bret;
  55. }
  56. /************************************************************************/
  57. /*
  58. 函数:lowercase
  59. 描述:将指定字符串小写化;
  60. 参数:
  61. IN Str 要转为小写的字符串;
  62. 返回:返回转小写后的字符串;
  63. 注意:
  64. */
  65. /************************************************************************/
  66. TString findfile::lowercase(IN const TString &Str)
  67. {
  68. const TCHAR aazz = _T('z') - _T('Z');
  69. TString sResult;
  70. for (TString::const_iterator it = Str.begin(); Str.end() != it; it++)
  71. {
  72. if (_T('A') <= *it && *it <= _T('Z'))
  73. sResult.append(1, *it + aazz);
  74. else
  75. sResult.append(1, *it);
  76. }
  77. return sResult;
  78. }
  79. void findfile::lowercase(IN TString& str)
  80. {
  81. TCHAR az = _T('z') - _T('Z');
  82. for (TString::iterator it = str.begin(); it != str.end(); it++)
  83. {
  84. if (_T('A') <= *it && *it <= _T('Z'))
  85. *it += az;
  86. }
  87. }
  88. /************************************************************************/
  89. /*
  90. 函数:uppercase
  91. 描述:将指定字符串大写化;
  92. 参数:
  93. IN Str 要转为大写的字符串;
  94. 返回:返回转大写后的字符串;
  95. 注意:
  96. */
  97. /************************************************************************/
  98. TString findfile::uppercase(IN const TString &Str)
  99. {
  100. const TCHAR aazz = _T('z') - _T('Z');
  101. TString sResult;
  102. for (TString::const_iterator it = Str.begin(); Str.end() != it; it++)
  103. {
  104. if (_T('a') <= *it && *it <= _T('z'))
  105. sResult.append(1, *it - aazz);
  106. else
  107. sResult.append(1, *it);
  108. }
  109. return sResult;
  110. }
  111. void findfile::uppercase(IN TString& str)
  112. {
  113. TCHAR az = _T('z') - _T('Z');
  114. for (TString::iterator it = str.begin(); it != str.end(); it++)
  115. {
  116. if (_T('a') <= *it && *it <= _T('z'))
  117. *it -= az;
  118. }
  119. }
  120. /************************************************************************/
  121. /*
  122. 函数:match
  123. 描述:判断指定的文件命名是否匹配指定的扩展名;
  124. 参数:
  125. IN sFileExt 扩展名;
  126. IN sFile 文件名;
  127. 返回:匹配返回非0值,否则返回0;
  128. 注意:
  129. */
  130. /************************************************************************/
  131. int findfile::match(IN CONST TString &sFileExt, IN CONST TString &sFile)
  132. {
  133. TString fext = uppercase(sFileExt);
  134. TString file = uppercase(sFile);
  135. int pos = file.find_last_of(_T('.'));
  136. if (TString::npos != pos)
  137. file = file.substr(pos);
  138. return (TString::npos != fext.find(file));
  139. }
  140. void findfile::setlimit(IN CONST INT &nLimit)
  141. {
  142. if (nLimit < 1)
  143. m_nlimit = nDefLimit;
  144. if (nLimit < nMaxLimit)
  145. m_nlimit = nLimit;
  146. }
  147. // 保留指定的扩展名文件;
  148. void findfile::keepdownext(IN CONST TString &keepExt, IN STR_VEC &vtfiles)
  149. {
  150. if (keepExt.find(_T("*.*")) != TString::npos) return;
  151. if (!iscorrectext(keepExt) || vtfiles.size() == 0) return;
  152. // 获取复制扩展名;
  153. int nIndex = 0;
  154. TString strtmp;
  155. TString strRemainExt(keepExt);
  156. strRemainExt.append(_T("|"));
  157. STR_VEC vtRemainExt;
  158. // 将所有扩展名解析到数组里;
  159. do
  160. {
  161. nIndex = strRemainExt.find(_T('|'));
  162. if (nIndex != TString::npos)
  163. {
  164. strtmp = strRemainExt.substr(0, nIndex);
  165. strRemainExt = strRemainExt.substr(nIndex + 1);
  166. if (strtmp.compare(_T("*.*")))
  167. vtRemainExt.push_back(strtmp);
  168. }
  169. } while (strRemainExt.find(_T('|')) != TString::npos);
  170. // 过滤非复制扩展名的文件,同时去掉缩略图,保留指定复制扩展名的文件;
  171. for (STR_VEC::iterator it = vtfiles.begin(); it != vtfiles.end();)
  172. {
  173. BOOL bExsit = FALSE;
  174. for (STR_VEC::iterator itExt = vtRemainExt.begin(); itExt != vtRemainExt.end(); itExt++)
  175. {
  176. if (match(itExt->c_str(), it->c_str())) {
  177. bExsit = TRUE;
  178. break;
  179. }
  180. }
  181. if (!bExsit) {
  182. it = vtfiles.erase(it);
  183. continue;
  184. }
  185. it++;
  186. }
  187. }
  188. // 移除指定扩展名的文件;
  189. void findfile::keepoutext(IN CONST TString &removeext, IN STR_VEC &vtfiles)
  190. {
  191. if (removeext.find(_T("*.*")) != TString::npos) return;
  192. if (!iscorrectext(removeext) || vtfiles.size() == 0) return;
  193. // 获取复制扩展名;
  194. int nIndex = 0;
  195. TString strtmp;
  196. TString strRemoveExt(removeext);
  197. strRemoveExt.append(_T("|"));
  198. STR_VEC vtRemoveExt;
  199. // 将所有扩展名解析到数组里;
  200. do
  201. {
  202. nIndex = strRemoveExt.find(_T('|'));
  203. if (nIndex != TString::npos)
  204. {
  205. strtmp = strRemoveExt.substr(0, nIndex);
  206. strRemoveExt = strRemoveExt.substr(nIndex + 1);
  207. if (strtmp.compare(_T("*.*")))
  208. vtRemoveExt.push_back(strtmp);
  209. }
  210. } while (strRemoveExt.find(_T('|')) != TString::npos);
  211. // 过滤非复制扩展名的文件,同时去掉缩略图,保留指定复制扩展名的文件;
  212. for (STR_VEC::iterator it = vtfiles.begin(); it != vtfiles.end();)
  213. {
  214. for (STR_VEC::iterator itExt = vtRemoveExt.begin(); itExt != vtRemoveExt.end(); itExt++)
  215. {
  216. if (match(itExt->c_str(), it->c_str())) {
  217. it = vtfiles.erase(it);
  218. break;
  219. }
  220. }
  221. it++;
  222. }
  223. }
  224. void findfile::subgroupExt(IN CONST TString &ext1, IN STR_VEC &vt1, IN CONST TString &ext2, IN STR_VEC &vt2)
  225. {
  226. // if (ext1.find(_T("*.*")) != TString::npos ) return;
  227. // if ( !iscorrectext(ext1) || vt1.size() == 0 ) return;
  228. //
  229. // // 获取复制扩展名;
  230. // int nIndex = 0;
  231. // TString strtmp;
  232. // TString strExt1(ext1);
  233. // strExt1.append(_T("|"));
  234. // STR_VEC vtExt1;
  235. //
  236. // // 将所有扩展名解析到数组里;
  237. // do
  238. // {
  239. // nIndex = strExt1.find(_T('|'));
  240. // if ( nIndex != TString::npos )
  241. // {
  242. // strtmp = strExt1.substr(0,nIndex);
  243. // strExt1 = strExt1.substr(nIndex+1);
  244. //
  245. // if(strtmp.compare(_T("*.*")))
  246. // vtExt1.push_back(strtmp);
  247. // }
  248. // } while ( strExt1.find(_T('|')) != TString::npos );
  249. }
  250. // 获取文件名;
  251. TString findfile::getfilename(IN CONST TString &file)
  252. {
  253. TString name;
  254. TString strfile = file;
  255. int nIndex = strfile.find_last_of(_T('\\')); // 如果file不包含 '\\' ,得不到文件名;
  256. if (nIndex == TString::npos)
  257. return _T("");
  258. name = strfile.substr(nIndex);
  259. nIndex = name.find_last_of(_T('.'));
  260. if (nIndex == TString::npos)
  261. return _T("");
  262. return name.substr(0, nIndex);
  263. }
  264. // 全部;
  265. void findfile::findall(IN CONST TString& folder, IN CONST TString& findext)
  266. {
  267. TString path = folder;
  268. if (path.size() > 0 && c_pathSeparator != path[path.size() - 1])
  269. path.append(s_pathSeparator);
  270. TString fext = findext;
  271. if (0 == fext.compare(_T("*")) || 0 == fext.compare(_T("*.*")))
  272. fext = _T("");
  273. TString file = _T("*");
  274. TString s = path + file;
  275. WIN32_FIND_DATA fileinfo = { 0 };
  276. HANDLE handle = FindFirstFile(s.c_str(), &fileinfo);
  277. if (NULL != handle && INVALID_HANDLE_VALUE != handle)
  278. {
  279. do
  280. {
  281. // 检查是否超过最大数;
  282. if (checklimit()) break;
  283. // '.'和 '..'的系统文件去除;
  284. if (_T('.') != fileinfo.cFileName[0])
  285. {
  286. if ((FILE_ATTRIBUTE_DIRECTORY & fileinfo.dwFileAttributes) == FILE_ATTRIBUTE_DIRECTORY) // 目录;
  287. {
  288. m_pvtfolders->push_back(path + fileinfo.cFileName);
  289. findall(path + fileinfo.cFileName, fext);
  290. }
  291. else
  292. {
  293. if (!checklimit() && (0 == fext.size() || match(fext, fileinfo.cFileName)))
  294. {
  295. m_pvtnames->push_back(fileinfo.cFileName);
  296. m_pvtfiles->push_back(path + fileinfo.cFileName);
  297. s = fileinfo.cFileName;
  298. file = s.substr(0, s.find_last_of(_T('.')));
  299. m_pvtnames_noext->push_back(file);
  300. }
  301. }
  302. }
  303. } while (FindNextFile(handle, &fileinfo));
  304. FindClose(handle);
  305. }
  306. }
  307. void findfile::findsubfolder(IN CONST TString& folder)
  308. {
  309. TString path = folder;
  310. if (path.size() > 0 && c_pathSeparator != path[path.size() - 1])
  311. path.append(s_pathSeparator);
  312. TString file = _T("*");
  313. TString s = path + file;
  314. WIN32_FIND_DATA fileinfo = { 0 };
  315. HANDLE handle = FindFirstFile(s.c_str(), &fileinfo);
  316. if (NULL != handle && INVALID_HANDLE_VALUE != handle)
  317. {
  318. do
  319. {
  320. if (_T('.') != fileinfo.cFileName[0])// '.'和 '..'的系统文件去除;
  321. {
  322. if ((FILE_ATTRIBUTE_DIRECTORY & fileinfo.dwFileAttributes) == FILE_ATTRIBUTE_DIRECTORY) // 目录;
  323. {
  324. m_pvtfolders->push_back(path + fileinfo.cFileName);
  325. //findsubfolder(path+fileinfo.cFileName); // 不入子目录查找;
  326. }
  327. }
  328. } while (FindNextFile(handle, &fileinfo));
  329. FindClose(handle);
  330. }
  331. }
  332. void findfile::findallsubfolder(IN CONST TString& folder)
  333. {
  334. TString path = folder;
  335. if (path.size() > 0 && c_pathSeparator != path[path.size() - 1])
  336. path.append(s_pathSeparator);
  337. TString file = _T("*");
  338. TString s = path + file;
  339. WIN32_FIND_DATA fileinfo = { 0 };
  340. HANDLE handle = FindFirstFile(s.c_str(), &fileinfo);
  341. if (NULL != handle && INVALID_HANDLE_VALUE != handle)
  342. {
  343. do
  344. {
  345. if (_T('.') != fileinfo.cFileName[0])// '.'和 '..'的系统文件去除;
  346. {
  347. if ((FILE_ATTRIBUTE_DIRECTORY & fileinfo.dwFileAttributes) == FILE_ATTRIBUTE_DIRECTORY) // 目录;
  348. {
  349. m_pvtfolders->push_back(path + fileinfo.cFileName);
  350. findsubfolder(path + fileinfo.cFileName); // 不入子目录查找;
  351. }
  352. }
  353. } while (FindNextFile(handle, &fileinfo));
  354. FindClose(handle);
  355. }
  356. }
  357. //////////////////////////////////////////////////////////////////////////
  358. void findfile::findfiles_findin_subfolder(IN CONST TString& folder, IN CONST TString& findext)
  359. {
  360. TString path = folder;
  361. if (path.size() > 0 && c_pathSeparator != path[path.size() - 1])
  362. path.append(s_pathSeparator);
  363. TString fext = findext;
  364. if (0 == fext.compare(_T("*")) || 0 == fext.compare(_T("*.*")))
  365. fext = _T("");
  366. TString file = _T("*");
  367. TString s = path + file;
  368. WIN32_FIND_DATA fileinfo = { 0 };
  369. HANDLE handle = FindFirstFile(s.c_str(), &fileinfo);
  370. if (NULL != handle && INVALID_HANDLE_VALUE != handle)
  371. {
  372. do
  373. {
  374. // 检查是否超过最大数;
  375. if (checklimit()) break;
  376. // '.'和 '..'的系统文件去除;
  377. if (_T('.') != fileinfo.cFileName[0])
  378. {
  379. if ((FILE_ATTRIBUTE_DIRECTORY & fileinfo.dwFileAttributes) == FILE_ATTRIBUTE_DIRECTORY) // 目录;
  380. {
  381. findfiles_findin_subfolder(path + fileinfo.cFileName, fext);
  382. }
  383. else
  384. {
  385. if (!checklimit() && (0 == fext.size() || match(fext, fileinfo.cFileName)))
  386. {
  387. m_pvtfiles->push_back(path + fileinfo.cFileName);
  388. }
  389. }
  390. }
  391. } while (FindNextFile(handle, &fileinfo));
  392. FindClose(handle);
  393. }
  394. }
  395. void findfile::findfiles_findout_subfolder(IN CONST TString& folder, IN CONST TString& findext)
  396. {
  397. TString path = folder;
  398. if (path.size() > 0 && c_pathSeparator != path[path.size() - 1])
  399. path.append(s_pathSeparator);
  400. TString fext = findext;
  401. if (0 == fext.compare(_T("*")) || 0 == fext.compare(_T("*.*")))
  402. fext = _T("");
  403. TString file = _T("*");
  404. TString s = path + file;
  405. WIN32_FIND_DATA fileinfo = { 0 };
  406. HANDLE handle = FindFirstFile(s.c_str(), &fileinfo);
  407. if (NULL != handle && INVALID_HANDLE_VALUE != handle)
  408. {
  409. do
  410. {
  411. // 检查是否超过最大数;
  412. if (checklimit()) break;
  413. // '.'和 '..'的系统文件去除;
  414. if (_T('.') != fileinfo.cFileName[0])
  415. {
  416. if ((FILE_ATTRIBUTE_DIRECTORY & fileinfo.dwFileAttributes) != FILE_ATTRIBUTE_DIRECTORY) // 目录;
  417. {
  418. if (!checklimit() && (0 == fext.size() || match(fext, fileinfo.cFileName)))
  419. {
  420. m_pvtfiles->push_back(path + fileinfo.cFileName);
  421. }
  422. }
  423. }
  424. } while (FindNextFile(handle, &fileinfo));
  425. FindClose(handle);
  426. }
  427. }
  428. void findfile::findfiles_within_subfolder(IN CONST TString& folder, IN CONST TString& findext)
  429. {
  430. TString path = folder;
  431. if (path.size() > 0 && c_pathSeparator != path[path.size() - 1])
  432. path.append(s_pathSeparator);
  433. TString fext = findext;
  434. if (0 == fext.compare(_T("*")) || 0 == fext.compare(_T("*.*")))
  435. fext = _T("");
  436. TString file = _T("*");
  437. TString s = path + file;
  438. WIN32_FIND_DATA fileinfo = { 0 };
  439. HANDLE handle = FindFirstFile(s.c_str(), &fileinfo);
  440. if (NULL != handle && INVALID_HANDLE_VALUE != handle)
  441. {
  442. do
  443. {
  444. // 检查是否超过最大数;
  445. if (checklimit()) break;
  446. // '.'和 '..'的系统文件去除;
  447. if (_T('.') != fileinfo.cFileName[0])
  448. {
  449. if ((FILE_ATTRIBUTE_DIRECTORY & fileinfo.dwFileAttributes) == FILE_ATTRIBUTE_DIRECTORY) // 目录;
  450. {
  451. m_pvtfolders->push_back(path + fileinfo.cFileName);
  452. findfiles_within_subfolder(path + fileinfo.cFileName, fext);
  453. }
  454. else
  455. {
  456. if (!checklimit() && (0 == fext.size() || match(fext, fileinfo.cFileName)))
  457. {
  458. m_pvtfiles->push_back(path + fileinfo.cFileName);
  459. }
  460. }
  461. }
  462. } while (FindNextFile(handle, &fileinfo));
  463. FindClose(handle);
  464. }
  465. }
  466. //////////////////////////////////////////////////////////////////////////
  467. void findfile::findnames_findin_subfolder(IN CONST TString& folder, IN CONST TString& findext)
  468. {
  469. TString path = folder;
  470. if (path.size() > 0 && c_pathSeparator != path[path.size() - 1])
  471. path.append(s_pathSeparator);
  472. TString fext = findext;
  473. if (0 == fext.compare(_T("*")) || 0 == fext.compare(_T("*.*")))
  474. fext = _T("");
  475. TString file = _T("*");
  476. TString s = path + file;
  477. WIN32_FIND_DATA fileinfo = { 0 };
  478. HANDLE handle = FindFirstFile(s.c_str(), &fileinfo);
  479. if (NULL != handle && INVALID_HANDLE_VALUE != handle)
  480. {
  481. do
  482. {
  483. // 检查是否超过最大数;
  484. if (checklimit()) break;
  485. // '.'和 '..'的系统文件去除;
  486. if (_T('.') != fileinfo.cFileName[0])
  487. {
  488. if ((FILE_ATTRIBUTE_DIRECTORY & fileinfo.dwFileAttributes) == FILE_ATTRIBUTE_DIRECTORY) // 目录;
  489. {
  490. findnames_findin_subfolder(path + fileinfo.cFileName, fext);
  491. }
  492. else
  493. {
  494. if (!checklimit() && (0 == fext.size() || match(fext, fileinfo.cFileName)))
  495. {
  496. m_pvtnames->push_back(fileinfo.cFileName);
  497. }
  498. }
  499. }
  500. } while (FindNextFile(handle, &fileinfo));
  501. FindClose(handle);
  502. }
  503. }
  504. void findfile::findnames_findout_subfolder(IN CONST TString& folder, IN CONST TString& findext)
  505. {
  506. TString path = folder;
  507. if (path.size() > 0 && c_pathSeparator != path[path.size() - 1])
  508. path.append(s_pathSeparator);
  509. TString fext = findext;
  510. if (0 == fext.compare(_T("*")) || 0 == fext.compare(_T("*.*")))
  511. fext = _T("");
  512. TString file = _T("*");
  513. TString s = path + file;
  514. WIN32_FIND_DATA fileinfo = { 0 };
  515. HANDLE handle = FindFirstFile(s.c_str(), &fileinfo);
  516. if (NULL != handle && INVALID_HANDLE_VALUE != handle)
  517. {
  518. do
  519. {
  520. // 检查是否超过最大数;
  521. if (checklimit()) break;
  522. // '.'和 '..'的系统文件去除;
  523. if (_T('.') != fileinfo.cFileName[0])
  524. {
  525. if ((FILE_ATTRIBUTE_DIRECTORY & fileinfo.dwFileAttributes) != FILE_ATTRIBUTE_DIRECTORY) // 目录;
  526. {
  527. if (!checklimit() && (0 == fext.size() || match(fext, fileinfo.cFileName)))
  528. {
  529. m_pvtnames->push_back(fileinfo.cFileName);
  530. }
  531. }
  532. }
  533. } while (FindNextFile(handle, &fileinfo));
  534. FindClose(handle);
  535. }
  536. }
  537. void findfile::findnames_within_subfolder(IN CONST TString& folder, IN CONST TString& findext)
  538. {
  539. TString path = folder;
  540. if (path.size() > 0 && c_pathSeparator != path[path.size() - 1])
  541. path.append(s_pathSeparator);
  542. TString fext = findext;
  543. if (0 == fext.compare(_T("*")) || 0 == fext.compare(_T("*.*")))
  544. fext = _T("");
  545. TString file = _T("*");
  546. TString s = path + file;
  547. WIN32_FIND_DATA fileinfo = { 0 };
  548. HANDLE handle = FindFirstFile(s.c_str(), &fileinfo);
  549. if (NULL != handle && INVALID_HANDLE_VALUE != handle)
  550. {
  551. do
  552. {
  553. // 检查是否超过最大数;
  554. if (checklimit()) break;
  555. // '.'和 '..'的系统文件去除;
  556. if (_T('.') != fileinfo.cFileName[0])
  557. {
  558. if ((FILE_ATTRIBUTE_DIRECTORY & fileinfo.dwFileAttributes) == FILE_ATTRIBUTE_DIRECTORY) // 目录;
  559. {
  560. m_pvtfolders->push_back(path + fileinfo.cFileName);
  561. findnames_within_subfolder(path + fileinfo.cFileName, fext);
  562. }
  563. else
  564. {
  565. if (!checklimit() && (0 == fext.size() || match(fext, fileinfo.cFileName)))
  566. {
  567. m_pvtnames->push_back(fileinfo.cFileName);
  568. }
  569. }
  570. }
  571. } while (FindNextFile(handle, &fileinfo));
  572. FindClose(handle);
  573. }
  574. }
  575. //////////////////////////////////////////////////////////////////////////
  576. void findfile::findnames_findin_subfolder_ex(IN CONST TString& folder, IN CONST TString& findext)
  577. {
  578. TString path = folder;
  579. if (path.size() > 0 && c_pathSeparator != path[path.size() - 1])
  580. path.append(s_pathSeparator);
  581. TString fext = findext;
  582. if (0 == fext.compare(_T("*")) || 0 == fext.compare(_T("*.*")))
  583. fext = _T("");
  584. TString file = _T("*");
  585. TString s = path + file;
  586. WIN32_FIND_DATA fileinfo = { 0 };
  587. HANDLE handle = FindFirstFile(s.c_str(), &fileinfo);
  588. if (NULL != handle && INVALID_HANDLE_VALUE != handle)
  589. {
  590. do
  591. {
  592. // 检查是否超过最大数;
  593. if (checklimit()) break;
  594. // '.'和 '..'的系统文件去除;
  595. if (_T('.') != fileinfo.cFileName[0])
  596. {
  597. if ((FILE_ATTRIBUTE_DIRECTORY & fileinfo.dwFileAttributes) == FILE_ATTRIBUTE_DIRECTORY) // 目录;
  598. {
  599. findnames_findin_subfolder(path + fileinfo.cFileName, fext);
  600. }
  601. else
  602. {
  603. if (!checklimit() && (0 == fext.size() || match(fext, fileinfo.cFileName)))
  604. {
  605. s = fileinfo.cFileName;
  606. file = s.substr(0, s.find_last_of(_T('.')));
  607. m_pvtnames_noext->push_back(file);
  608. }
  609. }
  610. }
  611. } while (FindNextFile(handle, &fileinfo));
  612. FindClose(handle);
  613. }
  614. }
  615. void findfile::findnames_findout_subfolder_ex(IN CONST TString& folder, IN CONST TString& findext)
  616. {
  617. TString path = folder;
  618. if (path.size() > 0 && c_pathSeparator != path[path.size() - 1])
  619. path.append(s_pathSeparator);
  620. TString fext = findext;
  621. if (0 == fext.compare(_T("*")) || 0 == fext.compare(_T("*.*")))
  622. fext = _T("");
  623. TString file = _T("*");
  624. TString s = path + file;
  625. WIN32_FIND_DATA fileinfo = { 0 };
  626. HANDLE handle = FindFirstFile(s.c_str(), &fileinfo);
  627. if (NULL != handle && INVALID_HANDLE_VALUE != handle)
  628. {
  629. do
  630. {
  631. // 检查是否超过最大数;
  632. if (checklimit()) break;
  633. // '.'和 '..'的系统文件去除;
  634. if (_T('.') != fileinfo.cFileName[0])
  635. {
  636. if ((FILE_ATTRIBUTE_DIRECTORY & fileinfo.dwFileAttributes) != FILE_ATTRIBUTE_DIRECTORY) // 目录;
  637. {
  638. if (!checklimit() && (0 == fext.size() || match(fext, fileinfo.cFileName)))
  639. {
  640. s = fileinfo.cFileName;
  641. file = s.substr(0, s.find_last_of(_T('.')));
  642. m_pvtnames_noext->push_back(file);
  643. }
  644. }
  645. }
  646. } while (FindNextFile(handle, &fileinfo));
  647. FindClose(handle);
  648. }
  649. }
  650. void findfile::findnames_within_subfolder_ex(IN CONST TString& folder, IN CONST TString& findext)
  651. {
  652. TString path = folder;
  653. if (path.size() > 0 && c_pathSeparator != path[path.size() - 1])
  654. path.append(s_pathSeparator);
  655. TString fext = findext;
  656. if (0 == fext.compare(_T("*")) || 0 == fext.compare(_T("*.*")))
  657. fext = _T("");
  658. TString file = _T("*");
  659. TString s = path + file;
  660. WIN32_FIND_DATA fileinfo = { 0 };
  661. HANDLE handle = FindFirstFile(s.c_str(), &fileinfo);
  662. if (NULL != handle && INVALID_HANDLE_VALUE != handle)
  663. {
  664. do
  665. {
  666. // 检查是否超过最大数;
  667. if (checklimit()) break;
  668. // '.'和 '..'的系统文件去除;
  669. if (_T('.') != fileinfo.cFileName[0])
  670. {
  671. if ((FILE_ATTRIBUTE_DIRECTORY & fileinfo.dwFileAttributes) == FILE_ATTRIBUTE_DIRECTORY) // 目录;
  672. {
  673. m_pvtfolders->push_back(path + fileinfo.cFileName);
  674. findnames_within_subfolder(path + fileinfo.cFileName, fext);
  675. }
  676. else
  677. {
  678. if (!checklimit() && (0 == fext.size() || match(fext, fileinfo.cFileName)))
  679. {
  680. s = fileinfo.cFileName;
  681. file = s.substr(0, s.find_last_of(_T('.')));
  682. m_pvtnames_noext->push_back(file);
  683. }
  684. }
  685. }
  686. } while (FindNextFile(handle, &fileinfo));
  687. FindClose(handle);
  688. }
  689. }
  690. //////////////////////////////////////////////////////////////////////////
  691. void findfile::findfilesnames_findin_subfolder(IN CONST TString& folder, IN CONST TString& findext)
  692. {
  693. TString path = folder;
  694. if (path.size() > 0 && c_pathSeparator != path[path.size() - 1])
  695. path.append(s_pathSeparator);
  696. TString fext = findext;
  697. if (0 == fext.compare(_T("*")) || 0 == fext.compare(_T("*.*")))
  698. fext = _T("");
  699. TString file = _T("*");
  700. TString s = path + file;
  701. WIN32_FIND_DATA fileinfo = { 0 };
  702. HANDLE handle = FindFirstFile(s.c_str(), &fileinfo);
  703. if (NULL != handle && INVALID_HANDLE_VALUE != handle)
  704. {
  705. do
  706. {
  707. // 检查是否超过最大数;
  708. if (checklimit()) break;
  709. // '.'和 '..'的系统文件去除;
  710. if (_T('.') != fileinfo.cFileName[0])
  711. {
  712. if ((FILE_ATTRIBUTE_DIRECTORY & fileinfo.dwFileAttributes) == FILE_ATTRIBUTE_DIRECTORY) // 目录;
  713. {
  714. findfilesnames_findin_subfolder(path + fileinfo.cFileName, fext);
  715. }
  716. else
  717. {
  718. if (!checklimit() && (0 == fext.size() || match(fext, fileinfo.cFileName)))
  719. {
  720. m_pvtnames->push_back(fileinfo.cFileName);
  721. m_pvtfiles->push_back(path + fileinfo.cFileName);
  722. }
  723. }
  724. }
  725. } while (FindNextFile(handle, &fileinfo));
  726. FindClose(handle);
  727. }
  728. }
  729. void findfile::findfilesnames_findout_subfolder(IN CONST TString& folder, IN CONST TString& findext)
  730. {
  731. TString path = folder;
  732. if (path.size() > 0 && c_pathSeparator != path[path.size() - 1])
  733. path.append(s_pathSeparator);
  734. TString fext = findext;
  735. if (0 == fext.compare(_T("*")) || 0 == fext.compare(_T("*.*")))
  736. fext = _T("");
  737. TString file = _T("*");
  738. TString s = path + file;
  739. WIN32_FIND_DATA fileinfo = { 0 };
  740. HANDLE handle = FindFirstFile(s.c_str(), &fileinfo);
  741. if (NULL != handle && INVALID_HANDLE_VALUE != handle)
  742. {
  743. do
  744. {
  745. // 检查是否超过最大数;
  746. if (checklimit()) break;
  747. // '.'和 '..'的系统文件去除;
  748. if (_T('.') != fileinfo.cFileName[0])
  749. {
  750. if ((FILE_ATTRIBUTE_DIRECTORY & fileinfo.dwFileAttributes) != FILE_ATTRIBUTE_DIRECTORY) // 目录;
  751. {
  752. if (!checklimit() && (0 == fext.size() || match(fext, fileinfo.cFileName)))
  753. {
  754. m_pvtnames->push_back(fileinfo.cFileName);
  755. m_pvtfiles->push_back(path + fileinfo.cFileName);
  756. }
  757. }
  758. }
  759. } while (FindNextFile(handle, &fileinfo));
  760. FindClose(handle);
  761. }
  762. }
  763. void findfile::findfilesnames_within_subfolder(IN CONST TString& folder, IN CONST TString& findext)
  764. {
  765. TString path = folder;
  766. if (path.size() > 0 && c_pathSeparator != path[path.size() - 1])
  767. path.append(s_pathSeparator);
  768. TString fext = findext;
  769. if (0 == fext.compare(_T("*")) || 0 == fext.compare(_T("*.*")))
  770. fext = _T("");
  771. TString file = _T("*");
  772. TString s = path + file;
  773. WIN32_FIND_DATA fileinfo = { 0 };
  774. HANDLE handle = FindFirstFile(s.c_str(), &fileinfo);
  775. if (NULL != handle && INVALID_HANDLE_VALUE != handle)
  776. {
  777. do
  778. {
  779. // 检查是否超过最大数;
  780. if (checklimit()) break;
  781. // '.'和 '..'的系统文件去除;
  782. if (_T('.') != fileinfo.cFileName[0])
  783. {
  784. if ((FILE_ATTRIBUTE_DIRECTORY & fileinfo.dwFileAttributes) == FILE_ATTRIBUTE_DIRECTORY) // 目录;
  785. {
  786. m_pvtfolders->push_back(fileinfo.cFileName);
  787. findfilesnames_within_subfolder(path + fileinfo.cFileName, fext);
  788. }
  789. else
  790. {
  791. if (!checklimit() && (0 == fext.size() || match(fext, fileinfo.cFileName)))
  792. {
  793. m_pvtnames->push_back(fileinfo.cFileName);
  794. m_pvtfiles->push_back(path + fileinfo.cFileName);
  795. }
  796. }
  797. }
  798. } while (FindNextFile(handle, &fileinfo));
  799. FindClose(handle);
  800. }
  801. }
  802. void findfile::findfilesnames_findin_subfolder_ex(IN CONST TString& folder, IN CONST TString& findext)
  803. {
  804. TString path = folder;
  805. if (path.size() > 0 && c_pathSeparator != path[path.size() - 1])
  806. path.append(s_pathSeparator);
  807. TString fext = findext;
  808. if (0 == fext.compare(_T("*")) || 0 == fext.compare(_T("*.*")))
  809. fext = _T("");
  810. TString file = _T("*");
  811. TString s = path + file;
  812. WIN32_FIND_DATA fileinfo = { 0 };
  813. HANDLE handle = FindFirstFile(s.c_str(), &fileinfo);
  814. if (NULL != handle && INVALID_HANDLE_VALUE != handle)
  815. {
  816. do
  817. {
  818. // 检查是否超过最大数;
  819. if (checklimit()) break;
  820. // '.'和 '..'的系统文件去除;
  821. if (_T('.') != fileinfo.cFileName[0])
  822. {
  823. if ((FILE_ATTRIBUTE_DIRECTORY & fileinfo.dwFileAttributes) == FILE_ATTRIBUTE_DIRECTORY) // 目录;
  824. {
  825. findfilesnames_findin_subfolder(path + fileinfo.cFileName, fext);
  826. }
  827. else
  828. {
  829. if (!checklimit() && (0 == fext.size() || match(fext, fileinfo.cFileName)))
  830. {
  831. m_pvtfiles->push_back(path + fileinfo.cFileName);
  832. s = fileinfo.cFileName;
  833. file = s.substr(0, s.find_last_of(_T('.')));
  834. m_pvtnames_noext->push_back(file);
  835. }
  836. }
  837. }
  838. } while (FindNextFile(handle, &fileinfo));
  839. FindClose(handle);
  840. }
  841. }
  842. void findfile::findfilesnames_findout_subfolder_ex(IN CONST TString& folder, IN CONST TString& findext)
  843. {
  844. TString path = folder;
  845. if (path.size() > 0 && c_pathSeparator != path[path.size() - 1])
  846. path.append(s_pathSeparator);
  847. TString fext = findext;
  848. if (0 == fext.compare(_T("*")) || 0 == fext.compare(_T("*.*")))
  849. fext = _T("");
  850. TString file = _T("*");
  851. TString s = path + file;
  852. WIN32_FIND_DATA fileinfo = { 0 };
  853. HANDLE handle = FindFirstFile(s.c_str(), &fileinfo);
  854. if (NULL != handle && INVALID_HANDLE_VALUE != handle)
  855. {
  856. do
  857. {
  858. // 检查是否超过最大数;
  859. if (checklimit()) break;
  860. // '.'和 '..'的系统文件去除;
  861. if (_T('.') != fileinfo.cFileName[0])
  862. {
  863. if ((FILE_ATTRIBUTE_DIRECTORY & fileinfo.dwFileAttributes) == FILE_ATTRIBUTE_DIRECTORY) // 目录;
  864. {
  865. findfilesnames_findout_subfolder_ex(path + fileinfo.cFileName, fext);
  866. }
  867. else
  868. {
  869. if (!checklimit() && (0 == fext.size() || match(fext, fileinfo.cFileName)))
  870. {
  871. m_pvtfiles->push_back(path + fileinfo.cFileName);
  872. s = fileinfo.cFileName;
  873. file = s.substr(0, s.find_last_of(_T('.')));
  874. m_pvtnames_noext->push_back(file);
  875. }
  876. }
  877. }
  878. } while (FindNextFile(handle, &fileinfo));
  879. FindClose(handle);
  880. }
  881. }
  882. void findfile::findfilesnames_within_subfolder_ex(IN CONST TString& folder, IN CONST TString& findext)
  883. {
  884. TString path = folder;
  885. if (path.size() > 0 && c_pathSeparator != path[path.size() - 1])
  886. path.append(s_pathSeparator);
  887. TString fext = findext;
  888. if (0 == fext.compare(_T("*")) || 0 == fext.compare(_T("*.*")))
  889. fext = _T("");
  890. TString file = _T("*");
  891. TString s = path + file;
  892. WIN32_FIND_DATA fileinfo = { 0 };
  893. HANDLE handle = FindFirstFile(s.c_str(), &fileinfo);
  894. if (NULL != handle && INVALID_HANDLE_VALUE != handle)
  895. {
  896. do
  897. {
  898. // 检查是否超过最大数;
  899. if (checklimit()) break;
  900. // '.'和 '..'的系统文件去除;
  901. if (_T('.') != fileinfo.cFileName[0])
  902. {
  903. if ((FILE_ATTRIBUTE_DIRECTORY & fileinfo.dwFileAttributes) == FILE_ATTRIBUTE_DIRECTORY) // 目录;
  904. {
  905. m_pvtfolders->push_back(fileinfo.cFileName);
  906. findfilesnames_within_subfolder_ex(path + fileinfo.cFileName, fext);
  907. }
  908. else
  909. {
  910. if (!checklimit() && (0 == fext.size() || match(fext, fileinfo.cFileName)))
  911. {
  912. m_pvtfiles->push_back(path + fileinfo.cFileName);
  913. s = fileinfo.cFileName;
  914. file = s.substr(0, s.find_last_of(_T('.')));
  915. m_pvtnames_noext->push_back(file);
  916. }
  917. }
  918. }
  919. } while (FindNextFile(handle, &fileinfo));
  920. FindClose(handle);
  921. }
  922. }
  923. };