使用fstat获取时:
int fd= open(srcfile,O_RDONLY);
struct stat src_st;
fstat(frd,&src_st);
使用stat时:
FILE *fp = fopen(“test”, "r");
struct stat st;
if (fstat("test", &st) == -1) {}
或者:
FILE *file = fopen("example.txt", "r");
int fd = fileno(file);
struct stat fileStat;
if (fstat(fd, &fileStat) == -1) { }