毕业论文开发语言企业开发JAVA技术.NET技术WEB开发Linux/Unix数据库技术Windows平台移动平台嵌入式论文范文英语论文
您现在的位置: 毕业论文 >> linux >> 正文

如何使用open()read()write()函数实现将文件file.from中的字符逐个的复制到文件file.to中

更新时间:2012-6-1:  来源:毕业论文

如何使用open()read()write()函数实现将文件file.from中的字符逐个的复制到文件file.to中

#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>

int main()
{
  int fd1, fd2;
  int n;
  char buf[100];
  fd1 = open("file.from", O_RDWR);
  if (fd1 < 0)
  perror("open error!", errno);
  fd2 = open("file.to", O_CREAT|O_RDWR);
  if (fd1 < 0)
  perror("open error!", errno);
  while((n = read(fd1, buf, 100)))
  {
  write(fd2, buf, n);
  }

  return 0;
}

设为首页 | 联系站长 | 友情链接 | 网站地图 |

copyright©youerw.com 优尔论文网 严禁转载
如果本毕业论文网损害了您的利益或者侵犯了您的权利,请及时联系,我们一定会及时改正。