1.源码实现
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <time.h>
int main()
{
struct stat buf;
int ret = 0;;
int size = 0;
memset(&buf, 0x00, sizeof(buf));
ret = stat("./1.txt", &buf);
if(ret != 0)
{
printf("显示文件状态信息出错\n");
return -1;
}
size = buf.st_size;
printf("文件大小: %d\n", size);
printf("文件状态改变时间: %s", ctime(&buf.st_ctime));
printf("文件访问时间: %s", ctime(&buf.st_atime));
printf("文件最后修改时间: %s", ctime(&buf.st_mtime));
return 0;
}
2.编译源码
$ gcc -o example example.c
3.运行及其结果
$ touch 1.txt
$ ./example
文件大小: 0
文件状态改变时间: Wed Sep 1 21:31:26 2021
文件访问时间: Wed Sep 1 21:31:26 2021
文件最后修改时间: Wed Sep 1 21:31:26 2021
网友评论