gpt4 book ai didi

c++ - 在 C++ 中读取多个 .dat 文件

转载 作者:行者123 更新时间:2023-11-28 00:47:48 26 4
gpt4 key购买 nike

我使用下面的代码读取一个 .dat 文件并找到执行时间,它运行良好。我试图构建一个循环来读取多个文件,因为我有超过 20 个不同名称的文件(我需要保留它们的名称),但它没有用。我如何开发此代码来读取位于某个文件夹中的所有文件,无论它们有多少? (基于以下代码)

#include <Windows.h>
#include <ctime>
#include <stdint.h>
#include <iostream>
using std::cout;
using std::endl;
#include <fstream>
using std::ifstream;

#include <cstring>

/* Returns the amount of milliseconds elapsed since the UNIX epoch. Works on both
* windows and linux. */

uint64_t GetTimeMs64()
{


FILETIME ft;
LARGE_INTEGER li;

/* Get the amount of 100 nano seconds intervals elapsed since January 1, 1601 (UTC) and copy it
* to a LARGE_INTEGER structure. */
GetSystemTimeAsFileTime(&ft);
li.LowPart = ft.dwLowDateTime;
li.HighPart = ft.dwHighDateTime;

uint64_t ret;
ret = li.QuadPart;
ret -= 116444736000000000LL; /* Convert from file time to UNIX epoch time. */
ret /= 10000; /* From 100 nano seconds (10^-7) to 1 millisecond (10^-3) intervals */

return ret;

}




const int MAX_CHARS_PER_LINE = 512;
const int MAX_TOKENS_PER_LINE = 20;
const char* const DELIMITER = "|";

int main()
{
// create a file-reading object
ifstream fin;
fin.open("promotion.txt"); // open a file
if (!fin.good())
return 1; // exit if file not found

// read each line of the file
while (!fin.eof())
{
// read an entire line into memory
char buf[MAX_CHARS_PER_LINE];
fin.getline(buf, MAX_CHARS_PER_LINE);

// parse the line into blank-delimited tokens
int n = 0; // a for-loop index

// array to store memory addresses of the tokens in buf
const char* token[MAX_TOKENS_PER_LINE] = {}; // initialize to 0

// parse the line
token[0] = strtok(buf, DELIMITER); // first token
if (token[0]) // zero if line is blank
{
for (n = 1; n < MAX_TOKENS_PER_LINE; n++)
{
token[n] = strtok(0, DELIMITER); // subsequent tokens
if (!token[n]) break; // no more tokens
}
}

// process (print) the tokens
for (int i = 0; i < n; i++) // n = #of tokens
cout << "Token[" << i << "] = " << token[i] << endl;
cout << endl;
}
uint64_t z = GetTimeMs64();
cout << z << endl;
system("pause");
}

最佳答案

要在 Windows 上列出目录中的文件,请引用此链接:

http://msdn.microsoft.com/en-us/library/windows/desktop/aa365200(v=vs.85).aspx

关于您的代码的注释:

  1. 不要使用fin.eof() 来测试输入结束,查看原因:eof of istream in C++

  2. 要读取多个文件,如果使用同一个fin读取,记得在fin.close之前使用fin.clear()多个文件。

更新:

以下代码打印出目录 D:\\Test 中的文件名。如果您需要每个文件或子文件夹中文件的绝对路径,请更改 GetFiles 来执行此操作。根据我提供的链接,这非常简单。代码在 VS2012 Win7 Pro 上测试。

#include <windows.h>
#include <Shlwapi.h>

#include <iostream>
#include <fstream>
#include <string>
#include <vector>
using namespace std;

#pragma comment(lib, "Shlwapi.lib")

int GetFiles(const string &path, vector<string> &files, const string &wildcard = "\\*")
{
wstring basepath(path.begin(), path.end());
wstring wpath = basepath + wstring(wildcard.begin(), wildcard.end());

WIN32_FIND_DATA ffd;
HANDLE hFind = INVALID_HANDLE_VALUE;
DWORD dwError = 0;

hFind = FindFirstFile(wpath.c_str(), &ffd);

if (INVALID_HANDLE_VALUE == hFind) {
// display error messages
return dwError;
}

TCHAR buf[MAX_PATH];
do {
if (ffd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
// directory
} else {
PathCombine(buf, basepath.c_str(), ffd.cFileName);
wstring tmp(buf);
files.push_back(string(tmp.begin(), tmp.end()));
}
} while (FindNextFile(hFind, &ffd));

dwError = GetLastError();
if (ERROR_NO_MORE_FILES != dwError) {
// some errors
}
FindClose(hFind);
return dwError;
}

int main()
{
string path("D:\\Documents\\Visual Studio 2012\\Projects\\SigSpatial2013");
vector<string> files;
GetFiles(path, files);
string line;
ifstream fin;
for (int i = 0; i < files.size(); ++i) {
cout << files[i] << endl;

fin.open(files[i].c_str());
if (!fin.is_open()) {
// error occurs!!
// break or exit according to your needs
}

while (getline(fin, line)) {
// now process every line
}

fin.clear();
fin.close();
}
}

关于c++ - 在 C++ 中读取多个 .dat 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15583173/

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