0

我需要帮助打开一个名为“编辑数据”的文件夹中的文件,该文件夹与我正在制作的 .exe 位于同一文件夹中。我不确定如何在 C++ 中处理从文件夹打开文件。我想要的例子。

....\Program\Edit Data <- 我想从此文件夹中打开一个文件并对其进行编辑

....\Program\program.exe <- .exe 的位置

我需要这样做,因为我在这个文件夹中有多个用户可以编辑的文件。我首先尝试为 Mod.dat 使用名为 Mod 的文件夹,但没有成功。

我当前代码的一半:

#include <iostream>
#include <iomanip>
#include <fstream>
#include <string>
#include <cmath>
#include <cstring>

using namespace std;


int main ()
{


string filename;//file that will be changed
//string path = "Mod/Mod.dat";//Path of Mod.dat that I could not get to work
//string file = path + "Mod.dat";//this was for opinging Mod.dat from folder call Mod, didnt work
long size;
char* memblock;
cout << " Enter a file to be modded by Mod.dat  ";
cin >> filename;

ofstream infile ( filename ,std::ofstream::binary | ofstream::in);//the file that will be opened and changed)
//"filename: I want to open it from a folder called Edit Data

ifstream modFile ( "Mod.dat" , ifstream::binary);// (mod.dat is the file that i get the first 1840 hex values from)

if (!infile){
    cout << " Couldn't open " << filename << endl;
}

if (!modFile){
    cout << " Couldn't open " << modFile << endl;
}

我不知道这是否重要,但我使用 Visual Studios,我的程序会打开“infile”并对其进行编辑。我还想从 Edit Data 文件夹中打开大约 1000 个文件,并使用 mod.dat 对其进行编辑。(编辑:到目前为止,我主要只需要知道如何从文件夹中读取单个文件。)还有一种方法可以制作一个文本文档,其中包含我添加时 ofstream 读取的文件名和位置到循环内部?

文件的外观: ....\Program\Edit Data\12a.dat ....\Program\Edit Data\m9i3.dat ....\Program\Edit Data\2020.dat

4

1 回答 1

1

您可以使用 dirent.h 获取 Edit Data 文件夹中所有文件的数组,然后打开 *.dat 文件。

或者您可以在 X 位置打开一个文件,其中包含您要编辑的文件及其文件路径的列表,请记住,路径要么是完整的(“C:\Program Files\Edit Data”),要么是变量,例如(“ ..\编辑数据”)。

于 2013-06-28T21:51:38.630 回答