gpt4 book ai didi

c++ - 提取文件重复信息

转载 作者:行者123 更新时间:2023-11-30 05:24:33 24 4
gpt4 key购买 nike

我想创建具有特定名称的文件。如果它已经存在,那么我想创建另一个文件,其名称附加一些数字。例如,我想创建文件 log.txt 但它已经存在了。然后我将创建新文件log1.txtlog2.txtlog3.txt....

有什么好的方法可以将重复信息记录到文件中吗?

最佳答案

只检查文件是否存在,如果存在,检查下一个等等,就像在这段代码中:

#include <sys/stat.h>
#include <iostream>
#include <fstream>
#include <string>

/**
* Check if a file exists
* @return true if and only if the file exists, false else
*/
bool fileExists(const std::string& file) {
struct stat buf;
return (stat(file.c_str(), &buf) == 0);
}

int main() {
// Base name for our file
std::string filename = "log.txt";
// If the file exists...
if(fileExists(filename)) {
int i = 1;
// construct the next filename
filename = "log" + std::to_string(i) + ".txt";
// and check again,
// until you find a filename that doesn't exist
while (fileExists(filename)) {
filename = "log" + std::to_string(++i) + ".txt";
}
}
// 'filename' now holds a name for a file that
// does not exist

// open the file
std::ofstream outfile(filename);
// write 'foo' inside the file
outfile << "foo\n";
// close the file
outfile.close();

return 0;
}

它将找到一个未使用的名称并创建一个具有该名称的文件,将“foo”写入其中,然后最终关闭该文件。


我的灵感来自 here 中的代码.

关于c++ - 提取文件重复信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38627173/

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