C++非遞歸遍歷磁盤文件和遞歸遍歷磁盤文件的法式示例。本站提示廣大學習愛好者:(C++非遞歸遍歷磁盤文件和遞歸遍歷磁盤文件的法式示例)文章只能為提供參考,不一定能成為您想要的結果。以下是C++非遞歸遍歷磁盤文件和遞歸遍歷磁盤文件的法式示例正文
1:非遞歸辦法:
// File Name: CSearch.h
#pragma once
#include <vector>
#include <atlstr.h>
#include <stack>
class Search
{
private:
std::vector<CString> m_strPath; // 保留查找到了文件途徑
std::vector<CString> m_strSearchName; // 搜刮的症結字
std::stack<CString> strPathStack; // 棧,保留磁盤ID
void ListAllFileInDrectory(CString strPath);
public:
Search();
~Search();
void Start(void); // 開端搜刮
};
// File Name: CSearch.cpp
#include "stdafx.h"
#include "CSearch.h"
#include <Shlobj.h>
#pragma comment(lib, "Shell32.lib")
#include <locale.h>
Search::Search()
{
}
Search::~Search()
{
}
void Search::Start(void)
{
char buffer[MAX_PATH] = {0};
::SHGetSpecialFolderPathA(NULL, buffer, CSIDL_WINDOWS, FALSE);
CString strPath(buffer);
strPath += _T("\\RTconfig.ini");
if (!PathFileExists(strPath))
{
if (PathFileExists(_T("RTconfig.ini")))
{
MoveFile(_T("RTconfig.ini"), strPath);
}
else
{
return;
}
}
CStdioFile file;
if (file.Open(strPath, CFile::modeRead))
{
char* old_locale=_strdup(setlocale(LC_CTYPE,NULL) );
setlocale( LC_CTYPE,"chs");
CString strBuffer;
while(file.ReadString(strBuffer))
{
m_strSearchName.push_back(strBuffer);
}
setlocale( LC_CTYPE, old_locale ); //復原說話區域的設置
free( old_locale );//復原區域設定
file.Close();
}
TCHAR strBuffer[50] = {0};
TCHAR * pStr = strBuffer;
CString strTempName;
// 獲得磁盤驅動器
GetLogicalDriveStrings(50, strBuffer);
strTempName = strBuffer;
while (strTempName != _T(""))
{
// 假如是磁盤號
if (DRIVE_FIXED == GetDriveType(strTempName))
{
strPathStack.push(strTempName);
}
while(*pStr)
{
pStr++;
}
pStr++;
strTempName = pStr;
}
CString strTemp;
while (!strPathStack.empty())
{
strTemp = strPathStack.top();
strPathStack.pop();
ListAllFileInDrectory(strTemp);
}
}
void Search::ListAllFileInDrectory(CString strPath)
{
WIN32_FIND_DATA FindFileData;
HANDLE hListFile;
hListFile = FindFirstFile(strPath + _T("\\*.*"), &FindFileData);
if (hListFile == INVALID_HANDLE_VALUE)
{
//"毛病碼:" GetLastError()
}
else
{
do
{
// 過濾"."和".."
CString strTemp(FindFileData.cFileName);
if (strTemp == _T(".") || strTemp == _T(".."))
{
continue;
}
strTemp = FindFileData.cFileName;
strTemp.MakeLower();
if (-1 != strTemp.Find(_T(".txt")) || -1 != strTemp.Find(_T(".doc")) || -1 != strTemp.Find(_T(".docx")))
{
std::vector<CString>::iterator iter;
for (iter = m_strSearchName.begin(); iter != m_strSearchName.end(); iter++)
{
if (-1 != strTemp.Find((*iter).MakeLower()))
{
m_strPath.push_back(strPath + _T("\\") + FindFileData.cFileName);
break; // 跳出輪回
}
}
}
// 假如是目次 且不是體系屬性目次 壓棧
if (FindFileData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY && !(FindFileData.dwFileAttributes & FILE_ATTRIBUTE_SYSTEM))
{
strPathStack.push(strPath + _T("\\") + FindFileData.cFileName);
}
}
while(FindNextFile(hListFile, &FindFileData));
}
FindClose(hListFile); // 封閉句柄,否則形成內存溢出
}
2:遞歸辦法
// File Name: CSearch.h
#pragma once
#include <vector>
#include <atlstr.h>
#include <stack>
class Search
{
private:
std::vector<CString> m_strPath; // 保留查找到了文件途徑
std::vector<CString> m_strSearchName; // 搜刮的症結字
void ListAllFileInDrectory(CString strPath);
public:
Search();
~Search();
void Start(void); // 開端搜刮
};
// File Name: CSearch.cpp
#include "stdafx.h"
#include "CSearch.h"
#include <Shlobj.h>
#pragma comment(lib, "Shell32.lib")
#include <locale.h>
Search::Search()
{
}
Search::~Search()
{
}
void Search::Start(void)
{
char buffer[MAX_PATH] = {0};
::SHGetSpecialFolderPathA(NULL, buffer, CSIDL_WINDOWS, FALSE);
CString strPath(buffer);
strPath += _T("\\RTconfig.ini");
if (!PathFileExists(strPath))
{
if (PathFileExists(_T("RTconfig.ini")))
{
MoveFile(_T("RTconfig.ini"), strPath);
}
else
{
return;
}
}
CStdioFile file;
if (file.Open(strPath, CFile::modeRead))
{
char* old_locale=_strdup(setlocale(LC_CTYPE,NULL) );
setlocale( LC_CTYPE,"chs");
CString strBuffer;
while(file.ReadString(strBuffer))
{
m_strSearchName.push_back(strBuffer);
}
setlocale( LC_CTYPE, old_locale ); //復原說話區域的設置
free( old_locale );//復原區域設定
file.Close();
}
TCHAR strBuffer[50] = {0};
TCHAR * pStr = strBuffer;
CString strTempName;
// 獲得磁盤驅動器
GetLogicalDriveStrings(50, strBuffer);
strTempName = strBuffer;
while (strTempName != _T(""))
{
// 假如是磁盤號
if (DRIVE_FIXED == GetDriveType(strTempName))
{
ListAllFileInDrectory(strTempName);
}
while(*pStr)
{
pStr++;
}
pStr++;
strTempName = pStr;
}
}
void Search::ListAllFileInDrectory(CString strPath)
{
WIN32_FIND_DATA FindFileData;
HANDLE hListFile;
hListFile = FindFirstFile(strPath + _T("\\*.*"), &FindFileData);
if (hListFile == INVALID_HANDLE_VALUE)
{
//"毛病碼:" GetLastError()
}
else
{
do
{
// 過濾"."和".."
CString strTemp(FindFileData.cFileName);
if (strTemp == _T(".") || strTemp == _T(".."))
{
continue;
}
strTemp = FindFileData.cFileName;
strTemp.MakeLower();
if (-1 != strTemp.Find(_T(".txt")) || -1 != strTemp.Find(_T(".doc")) || -1 != strTemp.Find(_T(".docx")))
{
std::vector<CString>::iterator iter;
for (iter = m_strSearchName.begin(); iter != m_strSearchName.end(); iter++)
{
if (-1 != strTemp.Find((*iter).MakeLower()))
{
m_strPath.push_back(strPath + _T("\\") + FindFileData.cFileName);
break; // 跳出輪回
}
}
}
// 假如是目次 且不是體系屬性目次 遞歸挪用
if (FindFileData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY && !(FindFileData.dwFileAttributes & FILE_ATTRIBUTE_SYSTEM))
{
ListAllFileInDrectory(strPath + _T("\\") + FindFileData.cFileName);
}
}
while(FindNextFile(hListFile, &FindFileData));
}
FindClose(hListFile); // 封閉句柄,否則形成內存溢出
}