我正在寻找一种跨平台(Windows + Linux)解决方案来将整个文件的内容读入char *
.
这就是我现在得到的:
FILE *stream;
char *contents;
fileSize = 0;
//Open the stream
stream = fopen(argv[1], "r");
//Steak to the end of the file to determine the file size
fseek(stream, 0L, SEEK_END);
fileSize = ftell(stream);
fseek(stream, 0L, SEEK_SET);
//Allocate enough memory (should I add 1 for the \0?)
contents = (char *)malloc(fileSize);
//Read the file
fscanf(stream, "%s", contents);
//Print it again for debugging
printf("Read %s\n", contents);
不幸的是,这只会打印文件中的第一行,所以我假设 fscanf 在第一个换行符处停止。但是我想阅读整个文件,包括并保留换行符。我不想使用 while 循环和 realloc 来手动构造整个字符串,我的意思是必须有一个更简单的方法?