"); //-->
/*************************************************************************
> File Name: hello.c
> Author: lizhu
> Mail:
> Created Time: 2015年11月20日 星期五 10时30分20秒
************************************************************************/
#include <time.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <stdio.h>
void main( void )
{
struct stat buf;
int result;
//获得文件状态信息
result =stat( "/home/lizhu/study/gg.c", &buf );
//显示文件状态信息
if( result != 0 )
perror( "显示文件状态信息出错" );//并提示出错的原因,如No such file or directory(无此文件或索引)
else
{
printf("文件大小: %d", buf.st_size);
printf("文件创建时间: %s", ctime(&buf.st_ctime));
printf("访问日期: %s", ctime(&buf.st_atime));
printf("最后修改日期: %s", ctime(&buf.st_mtime));
}
}
*博客内容为网友个人发布,仅代表博主个人观点,如有侵权请联系工作人员删除。