您好, 欢迎来到 !    登录 | 注册 | | 设为首页 | 收藏本站

如何以特定格式打印time_t?

如何以特定格式打印time_t?

使用strftime(您需要先转换time_tstruct tm*):

char buff[20];
struct tm * timeinfo;
timeinfo = localtime (&mtime);
strftime(buff, sizeof(buff), "%b %d %H:%M", timeinfo);

格式:

%b - The abbreviated month name according to the current locale.

%d - The day of the month as a decimal number (range 01 to 31).

%H - The hour as a decimal number using a 24-hour clock (range 00 to 23).

%M - The minute as a decimal number (range 00 to 59).

这是完整的代码

struct stat info; 
char buff[20]; 
struct tm * timeinfo;

stat(workingFile, &info);

timeinfo = localtime (&(info.st_mtime)); 
strftime(buff, 20, "%b %d %H:%M", timeinfo); 
printf("%s",buff);
其他 2022/1/1 18:20:51 有469人围观

撰写回答


你尚未登录,登录后可以

和开发者交流问题的细节

关注并接收问题和回答的更新提醒

参与内容的编辑和改进,让解决方法与时俱进

请先登录

推荐问题


联系我
置顶