您的位置:首页 > 其它

如何将不用系统函数将一个文本复制

2017-08-07 09:28 176 查看
#include <sys/stat.h>

#include <fcntl.h>

#include <stdio.h>

#include<errno.h>

#include <unistd.h>

#define  SIZE 1024

int main ()

{
int fd1=open ("1.ppt",O_RDONLY);
if (fd1==-1)
{
perror("open fd1");
}

int fd2=open("2.ppt",O_WRONLY|O_CREAT,0777);

if (fd1==-1)
{
perror("open fd2");
}

int ret=0;
char buf [SIZE]={0};

while (ret=read(fd1,buf,SIZE))
{
if (ret ==-1)
{
perror("read");
break;
}
write (fd2,buf ,ret);

}

printf ("fuzhiwancheng\n");

close(fd1);
close(fd2);

return 0;

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: