stat()返回现有文件不存在(C)

时间:2018-03-10 21:12:49

标签: c system-calls stat

我有一个非常奇怪的问题,我似乎无法解决。

我正在尝试对我的C程序中的目录中的文件进行统计,但有效文件返回-1(该文件不存在)。问题是,文件是有效的,并且确实包含一些数据。

另一个有趣的事情是默认目录。和..正在返回0。

以下是我的代码:

#include <stdio.h>
#include <dirent.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <pwd.h>
#include <grp.h>
#include <time.h>
#include <locale.h>
#include <langinfo.h>
#include <stdint.h>
#include <stdlib.h>

int main(int c, char *v[])
{
    int len;
    struct dirent *pDirent;
    DIR *pDir;
    char buffer[500] = {'\0'};
    char *files[10000];
    struct stat statbuf;
    int i = 0;
    int status;

    if (c < 2)
    {
        printf("Usage: testprog <dirname>\n");
        return 1;
    }
    pDir = opendir(v[1]);
    if (pDir == NULL)
    {
        printf("Cannot open directory '%s'\n", v[1]);
        return 1;
    }

    // http://pubs.opengroup.org/onlinepubs/9699919799/functions/fstatat.html

    while ((pDirent = readdir(pDir)) != NULL)
    {

        strcpy(buffer, (const char *)pDirent->d_name);
        files[i] = malloc(strlen(buffer) + 1);
        strcpy(files[i], buffer);
        printf("buffer: %s \n", buffer);
        if (stat(pDirent->d_name, &statbuf) == -1)
        {
            perror("stat");
            exit(EXIT_FAILURE);
        }
        status = stat(pDirent->d_name, &statbuf);
        printf("status: %d \n", status);
        i++;
    }
    closedir(pDir);

    return 0;
}

当我对目录中的文件运行stat命令时的输出如下:

buffer: test2
status: -1
buffer: .
status: 0
buffer: tset3
status: -1
buffer: ..
status: 0
buffer: test1
status: -1

有人可以指出我正确的方向吗?把头发拉出来。

1 个答案:

答案 0 :(得分:1)

您需要将目录名称与“/”和dentry名称连接起来并将其传递给stat,或者您需要使用目录的fstatat和dentry名称调用fd(或者您需要在您正在阅读的目录中,以便每个dentry名称同时是正确的相对名称)。