0

我想获取文件的修改日期,然后将其格式化为人类可读的日期。我正在运行一个 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);
4

5 回答 5

1

通常你会使用 fstat() 和 strftime()。

于 2013-07-03T10:46:24.673 回答
1

为什么不使用

 #include <fcntl.h>
 #include <sys/types.h>
 #include <sys/stat.h>

 int stat(const char *restrict path, struct stat *restrict buf);

(来自man -s2 stat

这将为您提供最后一次修改时间的 time_t

然后您可以使用ctime_rorasctime_rmktime来获取适当的信息。

于 2013-07-03T10:46:41.920 回答
1

这是同一程序的工作版本:

#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <time.h>
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char ** argv)
{
        if (argc < 2) exit(1);

        char *filename = argv[1];

        struct stat st;
        char s[1000];
        if (stat(filename, &st))
                exit(2);

        struct tm *mdtime = localtime( &st.st_mtime );
        strftime(s, sizeof(s), "%D", mdtime);

        printf("%s\n", s);
}

有关更多格式,请参见strftime

于 2013-07-03T11:02:56.227 回答
0

awk sed 组合是否必要?为什么不直接在文件上调用 fstat 并从那里提取修改日期呢?然后,您可以通过调用 ctime() 将其转换为字符串。

于 2013-07-03T10:48:00.060 回答
0

我不知道它是否有用。但是一旦我做了类似的事情。在获取该字符串时,只需处理该字符串并获取Month之后,您就可以使用

if(strcmp(May,string1)==0)
return 5;

你可以得到你想要的输出。

于 2013-07-03T10:49:42.350 回答