我正在尝试读取基于 MSDN 示例的文件以使用fopen_s
,但我不断收到访问冲突错误(我什至尝试使用常规fopen
但收到相同的消息。错误指向err
我的函数,我没有'不明白为什么这是一个问题:
char* Foo::readFile(const char* filename)
{
FILE* fp = NULL;
errno_t err = fopen_s(&fp, filename, "r"); // error points to this line
fseek(fp, 0, SEEK_END);
long file_length = ftell(fp);
fseek(fp, 0, SEEK_SET);
char* contents = new char[file_length + 1];
for (int i = 0; i < file_length + 1; i++)
{
contents[i] = 0;
}
fread(contents, 1, file_length, fp);
contents[file_length + 1] = '\0';
if (fp)
err = fclose(fp);
return contents;
}
修改后的版本给出了同样的错误:
FILE* fp = fopen(filename, "r"); // error again points to this line
fseek(fp, 0, SEEK_END);
long file_length = ftell(fp);
fseek(fp, 0, SEEK_SET);
char* contents = new char[file_length + 1];
for (int i = 0; i < file_length + 1; i++)
{
contents[i] = 0;
}
fread(contents, 1, file_length, fp);
contents[file_length + 1] = '\0';
fclose(fp);
return contents;
我的文件作为 text1.txt 和 text2.txt驻留在源文件中。在调用函数时:
char* fileData1 = readFile("text1.txt");
char* fileData2 = readFile("text2.txt");