0

我必须知道文件夹中某些文件的修改日期。它有效,但不适用于所有类型的文件。例如,它适用于 .c、.txt,但不适用于其他类型,如 .mp4、.jpg 和 .mp3(我正在创建的应用程序通常必须适用于多媒体文件)。它打印“无法显示时间。”,所以我想问题出在 stat() 上。谢谢。

这是代码:

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

char parola[12]="", hash[32]="", esadecimale[1000]="", system3[100]="./md5 ";
int i, len, len2;
int bytes;
char cwd[1024];

int main(void)
{
char t[100] = "";
struct stat b;
DIR *dp;
char destinationFolder[100] = "/Users/mattiazeni/Desktop/Prova/"; //Me la passa da sopra
struct dirent *dir_p;
dp = opendir(destinationFolder);
if ( dp == NULL ) exit(1);

len = strlen(destinationFolder);

for (i=0;i<len;i++) {
    system3[i+6]=destinationFolder[i];
}

while( ( dir_p = readdir(dp) ) != NULL ) {
    if (dir_p -> d_name[0] != '.') {
        //printf("%s\n", dir_p -> d_name);
        len2 = strlen(dir_p -> d_name);
        for (i=0;i<len2;i++) {
            if (dir_p -> d_name[i] == ' '){ //Mi serve per correggere i nomi dei file con spazi
                system3[i+len+6]='\\';   
            }
            else system3[i+len+6]=dir_p -> d_name[i];
        }
        system(system3); //Passa il valore a md5 che calcola l'hash e lo stampa nel file che ci serve insieme al persorso/nome del file

        FILE *fp;
        if((fp=fopen("userDatabase.txt", "ab"))==NULL) {
            printf("Error while opening the file..\n");
            fclose (fp);
        }
        else {
            if (!stat(dir_p -> d_name, &b)) {
            strftime(t, 100, "%d/%m/%Y %H:%M:%S", localtime( &b.st_mtime));         //C'è ancora qualche errore!!
            fprintf(fp, "%s", t);           
            }
            else {
                perror(0);
                fprintf(fp, "error");
            }
            fprintf(fp, " initialized");
            fprintf(fp, "\n");
        }
        fclose (fp);
        for (i=len+6;i<len+6+len2;i++) {
            system3[i]=' ';
        }
    }
}   
closedir(dp);
return 0;
}
4

3 回答 3

3

使用perror(). 你也不应该使用st_mtime吗?

统计:
       成功时,返回零。
       出错时,返回 -1,并适当设置 errno 。

99% 肯定是因为dir_p -> d_name不存在,而这又可能是由于本地化问题。

您可以执行以下操作:

fprintf(stderr, 
        "Unable to stat %s\n",
        dir_p->d_name); 
perror(0);

还; 如果您正在检查文件状态->f_name,不应该是这样吗?->d_name- (除非您使用 d_name 作为文件名。

fclose(fp)的不在你的fp == NULL检查范围内。由于您不返回或以其他方式中止流程,因此如果fopen失败,您将面临 SIGSEGV 风险。


编辑:你对这样的事情有什么好处?

#include <unistd.h>

char cwd[1024];

...  


} else {
    fprintf(stderr,
            "Unable to stat '%s'\n",
            dir_p->d_name);
    perror(0);

    if (getcwd(cwd, sizeof(cwd)) == NULL) {
        perror("getcwd() error");
    } else {
        fprintf(stderr,
                "in directory  '%s'\n",
                cwd);
    }
} 

编辑2:

第一的; 我说getcwd() != NULL应该==。硒变化。(对我不好。)

您的代码中的问题。(还有更多)但关于 stat - 你使用 d_name from readdir。这只是文件名;不是目录+文件名。因此; 你得到即:

stat(dir_p->d_name, ...)

变成即:

stat("file.mp4", ...)

最简单的快速修复(虽然脏)是:

/* you need to terminate the system string after your for loop */
system3[i + len + 6] = '\0';

system(system3);

if (!stat(system3 + 6, &b)) {
于 2012-04-22T15:25:17.900 回答
0

这是最终的工作代码,用于扫描目录中的文件,并将它们打印在带有修改日期的 txt 输出文件中:

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

char system3[6]="./md5 ";

int main(void)
{
char t[100] = "";
char bigbuff[200];
struct stat b;
char destinationFolder[100] = "/Users/mattiazeni/Desktop/Prova"; //Me la passa da sopra
DIR *dp;
struct dirent *dir_p;
dp = opendir(destinationFolder);
if ( dp == NULL ) exit(1);
while( ( dir_p = readdir(dp) ) != NULL ) {
    if (dir_p -> d_name[0] != '.') {
        sprintf( bigbuff, "%s%s/%s",system3, destinationFolder, dir_p->d_name);
        system(bigbuff); 

        FILE *fp;
        if((fp=fopen("userDatabase.txt", "ab"))==NULL) {
            printf("Error while opening the file..\n");
            fclose (fp);
        }
        else {
            sprintf( bigbuff, "%s/%s", destinationFolder, dir_p->d_name);
            if (!stat(bigbuff, &b)) {
            strftime(t, 100, "%d/%m/%Y %H:%M:%S", localtime( &b.st_mtime));         //C'è ancora qualche errore!!
            fprintf(fp, "%s", t);           
            }
            else {
                perror(0);
                fprintf(fp, "error");
            }
            fprintf(fp, "\n");
        }
        fclose (fp);
    }
}   
closedir(dp);
return 0;
}

感谢大家的帮助!

于 2012-04-23T05:54:45.527 回答
0

您应该使用 stat() 的完整路径名。Stat 不知道您对哪个目录感兴趣。

... 
char  bigbuff[PATH_MAX];

sprintf( bigbuff, "%s/%s", destinationFolder, dir_p->d_name);

rc = stat (bigbuff, &b);
...
于 2012-04-22T18:51:19.537 回答