简单说一下
使用 stat 函数,通过文件的绝对路径或者相对路径的文件名去打开相应文件的属性
包含的头文件
1 | #include <sys/stat.h> |
参考函数
1 | int stat(const char *path, struct stat *buf); |
读取文件属性
1 | ... |
使用 stat 函数,通过文件的绝对路径或者相对路径的文件名去打开相应文件的属性
1 | #include <sys/stat.h> |
1 | int stat(const char *path, struct stat *buf); |
1 | ... |