1. ホーム
  2. c

[解決済み] time_tを特定のフォーマットで表示するには?

2022-02-16 01:54:21

質問内容

lsコマンドは、このような形式で時間を表示します。

Aug 23 06:07 

から受け取った時間をどのように変換すればよいのでしょうか。 stat() 's mtime() を、現地時間ではこのような書式にするのでしょうか?

解決方法は?

使用方法 ストロフタイム (を変換する必要があります。 time_t から struct 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);