我是靠谱客的博主 忧伤泥猴桃,最近开发中收集的这篇文章主要介绍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 c 获取文件的时间信息所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

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

评论列表共有 0 条评论

立即
投稿
返回
顶部