私は C で次のコードを持っています。FreeBSD で実行します。としてコンパイルしますcc -o bbb bb.c
。次に、実行して出力を取得します
$ ./bbb
-1
stat: No such file or directory
これはコードです:
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <fcntl.h>
#include <string.h>
#include <sys/types.h>
#include <dirent.h>
#include <sys/stat.h>
#include <unistd.h>
#include <string.h>
int main() {
struct stat *st;
int stat_code =0;
stat_code = stat("/", st);
printf("%d\n", stat_code);
perror("stat");
return 0;
}