中国DOS联盟论坛

中国DOS联盟

-- 联合DOS 推动DOS 发展DOS --

联盟域名:www.cn-dos.net  论坛域名:www.cn-dos.net/forum
DOS,代表着自由开放与发展,我们努力起来,学习FreeDOS和Linux的自由开放与GNU精神,共同创造和发展美好的自由与GNU GPL世界吧!

游客:  注册 | 登录 | 命令行 | 会员 | 搜索 | 上传 | 帮助 »
中国DOS联盟论坛 » DOS开发编程 & 发展交流 (开发室) » 如何用TC写一个DOS下文件拷贝的程序啊?
作者:
标题: 如何用TC写一个DOS下文件拷贝的程序啊? 上一主题 | 下一主题
cicada
初级用户




积分 166
发帖 22
注册 2004-5-30
状态 离线
『楼 主』:  如何用TC写一个DOS下文件拷贝的程序啊?

在DOS下如何用TC写不同分区的文件拷贝的程序啊?用到哪些函数呢?帮帮忙啊!

2004-5-30 00:00
查看资料  发送邮件  发短消息 网志   编辑帖子  回复  引用回复
bush
银牌会员




积分 2165
发帖 730
注册 2004-4-21
状态 离线
『第 2 楼』:  

要取不同分区,要用以下函数,当然写copy函数可以用两个参数来完成,应该不难。
getdisk: gets current drive

int getdisk(void);

Prototype in dir.h

Returns the current drive. Drive A is 0.

setdisk: sets current disk drive

int setdisk(int drive);

Prototype in dir.h

Values for drive are 0=A, 1=B, 2=C etc.

Returns the total number of drives available.



2004-5-30 00:00
查看资料  发送邮件  发短消息 网志   编辑帖子  回复  引用回复
cicada
初级用户




积分 166
发帖 22
注册 2004-5-30
状态 离线
『第 3 楼』:  

"当然写copy函数可以用两个参数来完成" 哪两个参数呢?如何确定制定文件的目录呢?有没有类似的源代码啊?谢谢了!

2004-5-31 00:00
查看资料  发送邮件  发短消息 网志   编辑帖子  回复  引用回复
bush
银牌会员




积分 2165
发帖 730
注册 2004-4-21
状态 离线
『第 4 楼』:  

刚才我写了一个,最少地调用函数,你可以参考一下:
/*filename: mycopy.c    a example for copy a file to another file*/
#include
int main(int argc,char* argv[])
{
FILE *fpo,*fpi;
int tmp;
char *fname;
if(argc==1)
            {
            printf("Syntax is mycopy sourcefile targetfile\n";
            exit (1);
            }
fpi=fopen(argv[1],"rb";
if(!fpi)
         {
         printf("cannot open the sourcefile!\n";
         exit (2);
         }
if(argc==2)
            {
            printf("Please input target file name:";
            while(scanf("%s",&fname));
            fpo=fopen(fname,"wb";
            }
else fpo=fopen(argv[2],"wb";
if(!fpo)
         {
         printf("cannot creat the targetfile!\n";
         exit (3);
         }
while((tmp=fgetc(fpi))!=EOF)
                      fputc(tmp,fpo);
fclose(fpi);
fclose(fpo);
return 0;
}



2004-5-31 00:00
查看资料  发送邮件  发短消息 网志   编辑帖子  回复  引用回复
cicada
初级用户




积分 166
发帖 22
注册 2004-5-30
状态 离线
『第 5 楼』:  

谢谢了。

2004-6-1 00:00
查看资料  发送邮件  发短消息 网志   编辑帖子  回复  引用回复

请注意:您目前尚未注册或登录,请您注册登录以使用论坛的各项功能,例如发表和回复帖子等。


可打印版本 | 推荐给朋友 | 订阅主题 | 收藏主题



论坛跳转: