c语言怎么打开一个文件夹,求完整程序 20

是打开文件夹,不是打开文件... 是打开文件夹,不是打开文件 展开
 我来答
ft055025
2011-06-15 · TA获得超过153个赞
知道小有建树答主
回答量:312
采纳率:0%
帮助的人:175万
展开全部
调用系统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);
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
手机用户40553
推荐于2018-10-07 · TA获得超过143个赞
知道答主
回答量:431
采纳率:0%
帮助的人:248万
展开全部
在C语言中,对文件夹的操作,专业的说法称为"切换路径/目录",而不是"打开",因为文件夹,并不是一个"真正的文件",而只是一个访问文件的目录.

用C语言中的函数chdir,也就是change directory
int chdir(char *path)
-- 使指定的目录path变成当前的工作目录,之后所有的文件操作都是该目录下.

比如,想切换到f盘test目录下可以这样:
chdir("f:\\test ");
返回0表示切换成功,否则,表示失败.
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式