为了账号安全,请及时绑定邮箱和手机立即绑定

unix如何提取系统时间?

unix如何提取系统时间?

肥皂起泡泡 2018-10-16 10:06:16
在unix中,我想建立一个文件夹,是以当时的系统时间作为文件夹的名称。应该怎么做?请写的详细一些,我是新手
查看完整描述

1 回答

?
扬帆大鱼

TA贡献1799条经验 获得超9个赞

有很多种,先time,然后再将其变换为相应的格式

  • #include<stdio.h>

  • #include<time.h>


  • int main(void)

  • {

  • time_t t;

  • struct tm *tm;

  • char buf[64];

  • t=time(NULL);

  • tm=localtime(&t);


  • strftime(buf,sizeof(buf),"%c",tm);

  • printf("%s",buf);

  • return 0;

  • }



查看完整回答
反对 回复 2018-11-16
  • 1 回答
  • 0 关注
  • 674 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信