我在 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;
}