我想获取文件的修改日期,然后将其格式化为人类可读的日期。我正在运行一个 C 程序,该程序获取有关上次修改特定文件的时间的信息。我的 C 代码包含一个系统 cmd,其中包含许多由管道分隔的 egreps、awks、sed。使用 sed 或 awk 或类似的东西,我怎样才能将 06 转换为 June (这可以是任何月份,所以需要一个数组或其他东西)我想要实现的是最终得到一个类似于以下内容的字符串:
我的 C 代码包含:
char string1[100] = "";
#define MAXCHAR 100
FILE *fp;
char str[MAXCHAR], str2[MAXCHAR];
char* filename = "newfile";
/*
stat: run 'stat' on the dtlName file to display status information.
egrep: search for the pattern 'Modify' and print the lines containing it.
awk: Get columns 2 & 3
sed: replace the . with a space, leaving 3 columns of output
awk: only print cols 1 & 2 to newfile
sed: replace '-' with ' ' in newfile
awk: format output in newfile
*/
sprintf(string1, "/bin/stat %s \
| egrep Modify \
| /bin/awk '{print $2, $3}' \
| /bin/sed 's/\\./ /g' \
| /bin/awk '{print $1, $2}' \
| /bin/sed 's/-/ /g' \
| /bin/awk '{print $3,$2\", \"$1,\"at\",$4}' > newfile"
, dtlName);
system(string1);
fp = fopen(filename, "r");
while (fgets(str, MAXCHAR, fp) != NULL)
sprintf(str2,"%s", str);
/* Write information to file */
DisplayReportFile (report);
ReportEntry (report,L"Source file: %s, Created: %s\n\n",dtlName,str2);