web-dev-qa-db-ja.com

time_tを特定の形式で印刷するにはどうすればよいですか?

lsコマンドは、時間を次の形式で出力します。

_Aug 23 06:07 
_

stat()mtime()から受け取った時間を現地時間のこの形式に変換するにはどうすればよいですか?

7
kBisla

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);
12
Nemanja Boric