4

次のような tarfile を読み込んでいます。

fh = fopen(filename, "r");

if (fh == NULL) {
    printf("Unable to open %s.\n", filename);
    printf("Exiting.\n");
    return 1;
}

fseek(fh, 0L, SEEK_END);
filesize = ftell(fh);
fseek(fh, 0L, SEEK_SET);

filecontents = (char*)malloc(filesize + 1);     // +1 for null terminator

byteCount = fread(filecontents, filesize, 1, fh);
filecontents[filesize] = 0; 

fclose(fh);

if (byteCount != filesize) {
    printf("Error reading %s.\n", filename);
    printf("Expected filesize: %ld bytes.\n", filesize);
    printf("Bytes read: %d bytes.\n", byteCount);
}

次に、tarfile の内容をデコードし、そこに格納されているファイルを抽出します。すべてが正しく機能し、ファイルは問題なく抽出されますが、代わりにfread()返されます。私が得る出力は次のとおりです。1filesize

Error reading readme.tar.
Expected filesize: 10240 bytes.
Bytes read: 1 bytes.

のCPP リファレンスにfreadよると、戻り値は読み取られたバイト数である必要があります。

4

1 に答える 1

12

これを試して:

//byteCount = fread(filecontents, filesize, 1, fh);
byteCount = fread(filecontents, 1, filesize, fh);
于 2013-03-15T19:36:44.110 に答える