7个回答
展开全部
调用系统API可以实现,下为linux下一个遍历目录也就相当于文件夹的程序源码
#include <unistd.h>
#include <stdio.h>
#include <dirent.h>
#include <string.h>
#include <sys/stat.h>
#include <stdlib.h>
void printdir(char*dir, intdepth);
intmain(){printf(“Directoryscan of /home:\n”);
printdir(“/home”,0);
printf(“done.\n”);
exit(0);
}
void printdir(char*dir, intdepth)
{DIR *dp;structdirent*entry;
structstat statbuf;if((dp= opendir(dir)) == NULL)
{fprintf(stderr,”cannotopen directory: %s\n”, dir);
return;}chdir(dir);
while ((entry = readdir(dp) != NULL)
{lstat(entry->d_name, &statbuf);
if(S_ISDIR(statbuf.st_mode))
{if(strcmp(“.”,entry->d_name) == 0 || strcmp(“..”,entry->d_name) == 0)
continue;
printf(“%*s%s/\n”,depth,””,entry->d_name);
printdir(entry->d_name, depth+4);}
else printf(“%*s%s\n”,depth,””,entry->d_name);}chdir(“..”);
closedir(dp);
}
#include <unistd.h>
#include <stdio.h>
#include <dirent.h>
#include <string.h>
#include <sys/stat.h>
#include <stdlib.h>
void printdir(char*dir, intdepth);
intmain(){printf(“Directoryscan of /home:\n”);
printdir(“/home”,0);
printf(“done.\n”);
exit(0);
}
void printdir(char*dir, intdepth)
{DIR *dp;structdirent*entry;
structstat statbuf;if((dp= opendir(dir)) == NULL)
{fprintf(stderr,”cannotopen directory: %s\n”, dir);
return;}chdir(dir);
while ((entry = readdir(dp) != NULL)
{lstat(entry->d_name, &statbuf);
if(S_ISDIR(statbuf.st_mode))
{if(strcmp(“.”,entry->d_name) == 0 || strcmp(“..”,entry->d_name) == 0)
continue;
printf(“%*s%s/\n”,depth,””,entry->d_name);
printdir(entry->d_name, depth+4);}
else printf(“%*s%s\n”,depth,””,entry->d_name);}chdir(“..”);
closedir(dp);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在C语言中,对文件夹的操作,专业的说法称为"切换路径/目录",而不是"打开",因为文件夹,并不是一个"真正的文件",而只是一个访问文件的目录.
用C语言中的函数chdir,也就是change directory
int chdir(char *path)
-- 使指定的目录path变成当前的工作目录,之后所有的文件操作都是该目录下.
比如,想切换到f盘test目录下可以这样:
chdir("f:\\test ");
返回0表示切换成功,否则,表示失败.
用C语言中的函数chdir,也就是change directory
int chdir(char *path)
-- 使指定的目录path变成当前的工作目录,之后所有的文件操作都是该目录下.
比如,想切换到f盘test目录下可以这样:
chdir("f:\\test ");
返回0表示切换成功,否则,表示失败.
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询