我正在尝试读取包含以下内容的 hello.ms 文件:
Hello World!
使用此 C 代码:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int store_file(char* file_dir, char** buffer)
{
FILE* file;
long lSize;
size_t result;
char* tempBuffer;
file = fopen(file_dir, "r");
if (file==NULL)
{
fputs("File error.", stderr);
exit(1);
}
fseek(file, 0, SEEK_END);
lSize = ftell(file);
rewind(file);
tempBuffer = (char*)malloc(sizeof(char)*lSize);
if (tempBuffer == NULL)
{
fputs("Memory error.", stderr);
exit(2);
}
result = fread(tempBuffer, 1, lSize, file);
if (result != lSize)
{
fputs("Reading error.", stderr);
exit(3);
}
*buffer = tempBuffer;
free(tempBuffer);
fclose(file);
return lSize;
}
void fsa_cycle(char* file_dir)
{
char* buffer;
int bufferSize = store_file(file_dir, &buffer);
fwrite(buffer, sizeof(char), bufferSize, stdout);
}
int main(int argc, char* argv[])
{
if(argc < 2)
{
printf("\nSyntax: %s <file-name>\n\n", argv[0]);
exit(1);
}
fsa_cycle(argv[1]);
return 0;
}
它编译得很好。没有警告或错误。但它只输出rld!
当我在 hello.ms 文件中添加 8 个空格时,它会读取Hello World!
谁能告诉我为什么会这样?我尝试编写 fseek(file, 0, SEEK_CUR) 而不是 rewind 但这也不起作用。我在 Google 上找不到任何不建议程序员忘记使用 fseek 开始的帮助。任何帮助都会很棒!