我是靠谱客的博主 忧伤泥猴桃,这篇文章主要介绍linux c 获取文件的时间信息,现在分享给大家,希望可以做个参考。

/*************************************************************************
    > 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));

    }

}

最后

以上就是忧伤泥猴桃最近收集整理的关于linux c 获取文件的时间信息的全部内容,更多相关linux内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(108)

评论列表共有 0 条评论

立即
投稿
返回
顶部