4

我正在尝试将标准输入写入文件,但由于某种原因,我一直在读取零字节。

这是我的来源:

#include <stdio.h>
#include <stdlib.h>

#define BUF_SIZE 1024

int main(int argc, char* argv[]) {

    if (feof(stdin))
        printf("stdin reached eof\n");

    void *content = malloc(BUF_SIZE);

    FILE *fp = fopen("/tmp/mimail", "w");

    if (fp == 0)
        printf("...something went wrong opening file...\n");

    printf("About to write\n");
    int read;
    while ((read = fread(content, BUF_SIZE, 1, stdin))) {
        printf("Read %d bytes", read);
        fwrite(content, read, 1, fp);
        printf("Writing %d\n", read);
    }
    if (ferror(stdin))
        printf("There was an error reading from stdin");

    printf("Done writing\n");

    fclose(fp);

    return 0;
}

我正在跑步cat test.c | ./test,输出只是

About to write
Done writing

似乎读取了零字节,即使我正在管道很多东西。

4

1 回答 1

5

你有两个整数参数要fread()反转。你告诉它一次填充缓冲区,或者失败。相反,您想告诉它读取单个字符,最多 1024 次。反转两个整数参数,它将按设计工作。

于 2012-05-26T19:45:52.477 回答