C语言创建文件夹 文件夹名由用户键盘输入 如何实现
2个回答
展开全部
#include<dir.h>
#include<stdio.h>
void main()
{
int i;
char name[200];
printf("please input the name\n");
scanf("%s",&name);
i=mkdir(name);
if(i==-1)
printf("create directory failed\n");
else
printf("create directory sucessful\n");
}
用户若只输入文件名,如:hello,则在当前路径创建文件夹hello
若输入路径如:d:\hello,则在D盘下创建文件夹hello。
若输入错误路径如:m:\hello(不存在m盘),则创建文件失败。
create directory failed
#include<stdio.h>
void main()
{
int i;
char name[200];
printf("please input the name\n");
scanf("%s",&name);
i=mkdir(name);
if(i==-1)
printf("create directory failed\n");
else
printf("create directory sucessful\n");
}
用户若只输入文件名,如:hello,则在当前路径创建文件夹hello
若输入路径如:d:\hello,则在D盘下创建文件夹hello。
若输入错误路径如:m:\hello(不存在m盘),则创建文件失败。
create directory failed
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
*为名字,后面跟两点一撇问题补充:我不会VB啊,大哥你可以把原码发我吗?? 用VB啊.用C XP不行的!除非VC!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询