标题:C程序中复制磁盘文件问题
取消只看楼主
不懂C编程
Rank: 1
等 级:新手上路
帖 子:36
专家分:0
注 册:2009-10-17
结帖率:100%
 问题点数:0 回复次数:0 
C程序中复制磁盘文件问题
#include"stdio.h"
#include"stdlib.h"
#define null 0
#include"conio.h"
void main()
{
    FILE *in,*out;
    char ch;
    char infile[20],outfile[20];
    printf("enter the infile name\n");
    scanf("%s",infile);
    if((in=fopen(infile,"r"))==null)
    {
        printf("can not open infile");
        exit(0);
    }
    if((out=fopen(outfile,"w"))==null)
    {
        printf("can not open outfile");
        exit(0);
    }
    while(!feof(in))
        fputc(fgetc(in),out);
    fclose(in);
    fclose(out);
    getch();
}
这个是书上的源代码,没有任何错误和警告,题意是:将一个磁盘文件的内容复制到另一个磁盘文件中.
问题就在于:如何把非VC++安装的磁盘如E:\test1.txt的内容复制到F:\test2.txt中去呢?因为源程序中
没有关于文件路径的代码啊!如何解决这个问题?高手指点。
搜索更多相关主题的帖子: 文件 磁盘 
2009-10-18 18:34



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-289028-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.140756 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved