gpt4 book ai didi

c++ - C++中遍历目录和迭代器

转载 作者:太空宇宙 更新时间:2023-11-04 14:14:28 30 4
gpt4 key购买 nike

我是 C++ 的绝对新手,3 天前才开始用它编程。我正在尝试执行以下操作:

  • 遍历 X.X 文件(通常是 .)的目录,并对每个文件执行以下操作:

    • 在文件中搜索字符串 (findFirst),然后搜索直到另一个字符串 (findLast) - 文件将为 HTML 格式。

在此选择中,我想执行几项任务(尚未写入)- 但它们将是以下内容:

  • 其中一个字符串将是我要写入的文件名。 - 所以提取这个字段并用这个名字创建一个输出文件
  • 一些行将是制造商部件号 - 提取这些并相应地格式化输出文件其中大部分是产品描述。同样 - 这将在 HTML 结构中 - 所以提取它并格式化输出文件。

到目前为止,我已经设法使用 traverse 目录,并选择开始和结束关键字 - 借助互联网的一些帮助。

我的问题在这里processFiles(inputFileName, "testing", "finish");

我需要 inputFileName 作为遍历文件名的名称。

我找到的所有示例都只是使用 cout 打印文件名我需要将其传递给 processFiles 函数。

有人可以告诉我我需要使用什么吗?我已经尝试过 it->c_Str() 和 (*it) 和 .at.begin 的其他变体> 等等

我的非打印示例如下:

// Chomp.cpp : Defines the entry point for the console application.
//

#include <stdafx.h>
#include <windows.h>
#include <string>
#include <iostream>
#include <fstream>
#include <stdlib.h>
#include <cctype>
#include <algorithm>
#include <vector>
#include <stack>

//std::ifstream inFile ( "c:/temp/input.txt" ) ;
std::ofstream outFile( "c:/temp/output.txt") ;

using namespace std;

/////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////

void openFiles()
{
if (!(outFile.is_open()))
{
printf ("Could not Create Output file\n");
exit(0);
}
}

/////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////

bool ListFiles(wstring path, wstring mask, vector<wstring>& files)
{
HANDLE hFind = INVALID_HANDLE_VALUE;
WIN32_FIND_DATA ffd;
wstring spec;
stack<wstring> directories;

directories.push(path);
files.clear();

while (!directories.empty())
{
path = directories.top();
spec = path + L"\\" + mask;
directories.pop();

hFind = FindFirstFile(spec.c_str(), &ffd);
if (hFind == INVALID_HANDLE_VALUE)
return false;

do
{
if (wcscmp(ffd.cFileName, L".") != 0 && wcscmp(ffd.cFileName, L"..") != 0)
{
if (ffd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
directories.push(path + L"\\" + ffd.cFileName);
else
files.push_back(path + L"\\" + ffd.cFileName);
}
} while (FindNextFile(hFind, &ffd) != 0);

if (GetLastError() != ERROR_NO_MORE_FILES)
{
FindClose(hFind);
return false;
}

FindClose(hFind);
hFind = INVALID_HANDLE_VALUE;
}

return true;
}

/////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////

void processFiles(const wchar_t *inFileName, std::string findFirst,std::string findLast )
{
/*
std::string findFirst = "testing" ;
std::string findLast = "finish" ;
*/
std::string inputLine ;
int lineNum = 0 ;
char buffer[2048];
size_t found = 0;

std::ifstream inFile;
inFile.open (inFileName); // Open The file

if (inFile.is_open())
{
while( std::getline( inFile, inputLine ))
{
++lineNum ;
// printf ("Line len = %d\n ", inputLine.length());

if( (found = inputLine.find(findFirst)) != std::string::npos )
{
std::cout << "###Line " << lineNum << " At Position [ " << found << " ]\n" ;
sprintf_s(buffer, 2048, "[%-5.5d] %s\n", lineNum, inputLine.c_str());
outFile << buffer ;

bool foundLast = 0;
while( std::getline( inFile, inputLine ))
{
++lineNum ;

sprintf_s(buffer, 2048, "[%-5.5d] %s\n", lineNum, inputLine.c_str());
if( (found = inputLine.find(findLast)) != std::string::npos )
{
outFile << buffer ;
break; // Found last string - so stop after printing last line
}
else
outFile << buffer ;
}
}
else
{
// std::cout << "=>" << inputLine << '\n' ;
}
}
}
else
{
printf ("Cant open file \n");
exit(0);
}

inFile.close() ; // Close The file
}

/////////////////////////////////////////////////////////////////////////////////////////////
/// M A I N
/////////////////////////////////////////////////////////////////////////////////////////////

int main()
{
std::ifstream inFile ;

int startLine = 0;
int endLine = 0;
int lineSize = 0;
char buffer[512];

vector<wstring> files; // For Parsing Directory structure

openFiles();

// Start The Recursive parsing of Directory Structure

if (ListFiles(L"C:\\temp", L"*.*", files))
{
for (vector<wstring>::iterator it = files.begin(); it != files.end(); ++it)
{

printf ("Filename1 is %s\n", it->c_str());
printf ("Filename2 is %s\n", files.begin());

outFile << "\n------------------------------\n";
//outFile << it << endl;
wcout << it->c_str() << endl;
outFile << "\n------------------------------\n";


const wchar_t *inputFileName = it->c_str();
// processFiles(inputFileName, "testing", "finish");
// getchar();
}
}
outFile.close();
getchar();
}

最佳答案

让您的 processFile 接受一个 wstring,即:

void processFiles(wstring inFileName, std::string findFirst,std::string findLast )
{
// Make the necessary changes so that you use a wstring for inFileName
}

使用以下方法从 main() 调用它:

processFiles(*it, "testing", "finish");

关于c++ - C++中遍历目录和迭代器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12450901/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com