#include <fcntl.h>
#include <stdio.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
int main (int argc, char* argv[])
{
char* filename = argv[1];
/* Open the file for writing. If it exists, append to it;
otherwise, create a new file. */
int fd = open (filename, O_RDONLY | O_CREAT | O_APPEND, 0666);
// Reading file probleme
close (fd);
return 0;
}
私の問題は、バッファに読み込む方法が本当に見つからないことです。ファイルに int しかありませんが、ファイルからそのバッファーに読み取るにはどうすればよいですか? それを達成するための機能が見つかりません。