所以我写了一个简短的C程序,探索我电脑上的文件,寻找某个文件。我编写了一个简单的函数,它接受一个目录,打开它并四处查看:
int exploreDIR (char stringDIR[], char search[])
{
DIR* dir;
struct dirent* ent;
if ((dir = opendir(stringDIR)) == NULL)
{
printf("Error: could not open directory %s\n", stringDIR);
return 0;
}
while ((ent = readdir(dir)) != NULL)
{
if(strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0)
continue;
if (strlen(stringDIR) + 1 + strlen(ent->d_name) > 1024)
{
perror("\nError: File path is too long!\n");
continue;
}
char filePath[1024];
strcpy(filePath, stringDIR);
strcat(filePath, "/");
strcat(filePath, ent->d_name);
if (strcmp(ent->d_name, search) == 0)
{
printf(" Found it! It's at: %s\n", filePath);
return 1;
}
struct stat st;
if (lstat(filePath, &st) < 0)
{
perror("Error: lstat() failure");
continue;
}
if (st.st_mode & S_IFDIR)
{
DIR* tempdir;
if ((tempdir = opendir (filePath)))
{
exploreDIR(filePath, search);
}
}
}
closedir(dir);
return 0;
}
但是,我不断地得到输出:
Error: could not open directory /Users/Dan/Desktop/Box/Videos
Error: could not open directory /Users/Dan/Desktop/compilerHome
问题是,我不知道这些文件会导致opendir()失败。我没有在任何程序中打开它们。它们只是我在桌面上创建的简单文件夹。有人知道问题出在哪里吗?
最佳答案
您为每个opendir()
调用closedir()
两次。也许你的资源用完了。
关于c - 看似随机的opendir()失败C,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19212799/