如何用c语言将文件复制到自己想要的文件夹??

如何在此下,补充?以达到目的?#include"stdio.h"main(){FILE*in,*out;charch,infile[10],outfile[10];pri... 如何在此下,补充?以达到目的?
#include "stdio.h"
main ()
{FILE *in,*out;
char ch,infile[10],outfile[10];
printf ("Enter the infile name:\n");
scanf ("%s",infile);
printf ("Enter the outfile name:\n");
scanf("%s",outfile);
if((in=fopen (infile,"r"))==NULL)
{ printf("cannot open infile\n");
exit(0);
}
if ((out=fopen (outfile,"w"))==NULL)
{printf ("cannot open outfile\n");
exit(0);
}
while(!feof(in))fputc(fgetc(in),out);
fclose(in);
fclose(out);
}
该在哪里补充,if之前还是while之后
展开
 我来答
M_oenen
推荐于2017-10-01 · TA获得超过4902个赞
知道大有可为答主
回答量:2721
采纳率:69%
帮助的人:1565万
展开全部
C语言里的system("");函数可以执行命令行的几乎所有指令,把命令行输入的内容作为参数传入即可。复制文件的话 应该是:copy 源文件 目的路径。
例如命令行里的 copy c:\test.txt d:\text.txt,
也就是C语言里的:system("copy c:\test.txt d:\text.txt");
或者这样
char c[50] = "copy c:\test.txt d:\text.txt";
system(c);
Woobhurk
推荐于2017-10-02 · 超过85用户采纳过TA的回答
知道小有建树答主
回答量:208
采纳率:0%
帮助的人:189万
展开全部
包含库stdlib.h
然后调用system函数,使用命令行来解决。
copy:复制文件。
md:创建文件夹

在while之后执行:
system("md 你要复制到的路径");
system("copy 输入文件 输出文件");
注意:输出文件必须包括路径。
至于system参数中字符串的合并就你自己弄咯!^_^
追问
该在哪里补充,if之前还是while之后
追答

在fclose(out);之后,因为要防止文件丢失

我说清楚点:

其实这个功能没必要这么麻烦来实现的。只需要使用DOS或Linux命令就能实现的。

完整伪程序:

#include <stdlib.h>

int main(void)
{
    system("md YourFolder");
    system("copy infile outfile");
    return 0;
}

之所以使用命令是因为C语言里面好像没有创建文件夹的函数,如果非要使用就只能调用API了。

本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
xoaxa
2013-07-19 · TA获得超过8609个赞
知道大有可为答主
回答量:6415
采纳率:72%
帮助的人:3465万
展开全部
#include <stdio.h>
#include <stdlib.h>

int main() {
FILE *in,*out;
char infile[50],outfile[50];
printf ("Enter the infile name:");
scanf ("%s",infile);
printf ("Enter the outfile name:");
scanf("%s",outfile);
if((in = fopen(infile,"r")) == NULL) {
printf("cannot open %s.\n",infile);
exit(0);
}
if((out = fopen (outfile,"w"))==NULL) {
printf ("cannot open %s.\n",outfile);
exit(0);
}
while(!feof(in))fputc(fgetc(in),out);
fclose(in);
fclose(out);
return 0;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式