不完全的cp

#include<stdio.h>
#include<fcntl.h>
#include<unistd.h>
#define BUFSIZE 4096
#define COPYMODE 0644
void do_cp(char*,char*); 
int main(int ac,char* argv[])
{
  char *SRC,*DST;
  if(ac==1){
    printf("cp: missing file operand\n");
    exit(0);
  }
  if(ac==2){
    printf("cp: missing destination file operand after '%s'\n",argv[1]);
    exit(0);
  }
  if(ac==3){
    SRC=argv[1];
    DST=argv[2];
  }
  do_cp(SRC,DST);
  return 0;
}

void do_cp(char* src,char* dst)
{
  int fd_RD,fd_WR,nchars;
  char buf[BUFSIZE];
  fd_RD=open(src,O_RDONLY);
  fd_WR=creat(dst,COPYMODE);
  while((nchars=read(fd_RD,buf,BUFSIZE))>0){
    write(fd_WR,buf,nchars);
  }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值