3个回答
展开全部
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
int main()
{
int fdSrc;
int fdDst;
fdSrc=open("./test.txt",O_RDONLY);
fdDst=open("./test2.txt",O_WRONLY);
char buff[1024];
int ref;
do
{
ref=read(fdSrc,buff,1024);
printf("%s\n",buff);
write(fdDst,buff,ref);
}while(ref==1024);
}
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
int main()
{
int fdSrc;
int fdDst;
fdSrc=open("./test.txt",O_RDONLY);
fdDst=open("./test2.txt",O_WRONLY);
char buff[1024];
int ref;
do
{
ref=read(fdSrc,buff,1024);
printf("%s\n",buff);
write(fdDst,buff,ref);
}while(ref==1024);
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
文件复制可以通过一个简单的IO读写完成,文件夹的话应该是要调用windows的API来创建一个文件夹后把再把文件复制过去。这个你要去查看windows的API了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
通过system()函数使用dos命令
http://hi.baidu.com/rankabc/item/5a1bbe1e373e6fa289a95679
http://hi.baidu.com/rankabc/item/5a1bbe1e373e6fa289a95679
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询