Linux 实现多进程拷贝文件

//copy.c
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include<stdlib.h>
#include<sys/stat.h>
#include<errno.h>
#include <sys/wait.h>

int main(int argc,char *argv[]) {
    if(argc<4)
    {
         printf("please input args like \' copy src des prcnum\'");
         exit(1);
     }
     int fd = open(argv[1],O_RDONLY);
     if(fd<0)
     {
         perror("src:");
         exit(errno);
     }
     struct stat srcinfo;
     int statre = stat(argv[1],&srcinfo);
     if(statre !=0)
     {
         perror("stat failed");
         exit(errno);
     }
     close(fd);
     int numCount = atoi(argv[3]);
     int seeksize = srcinfo.st_size / numCount + (srcinfo.st_size% numCount>0?1:0);
     while (numCount--)
     {
         printf("%d\n",numCount);
         int pid = fork();
         if(pid == 0)
         {
             int csfd = open(argv[1],O_RDONLY);
             if (csfd<0)
             {
                 perror("open fild");
                 exit(errno);
             }
             int cdfd = open(argv[2],O_RDWR|O_CREAT,0777);
             int redseek = lseek(cdfd,seeksize*numCount,SEEK_SET);
             int resseek = lseek(csfd,seeksize*numCount,SEEK_SET);
             if (redseek < 0)
             {
                 perror("reseek:");
                 exit(errno);
             }
             char buf[1024];
             int rednum = 0;
             int flag = 0;
             while ((rednum =read(csfd,buf, sizeof(buf)))!=0)
             {
                  flag+=rednum;
                 if(flag>seeksize)
                 {
                     rednum = seeksize -(flag - rednum) ;
                     write(cdfd,buf,rednum);
                     break;
                 }
                 write(cdfd,buf,rednum);
             }
             close(csfd);
             close(cdfd);
             break;
         }

     }
     //非阻塞等待儿子进程gg
     while (waitpid(-1, NULL,WNOHANG)!=-1)
     {
         printf(" I am wait my son!\n");
         sleep(2);
     }
     return 0;
 }

linux下利用fork实现多进程拷贝文件。本程序拷贝的是就是其本身copy.c文件。本代码只注重实现,容错处理并未加全。纯原创,欢迎留言讨论指出bug。

  • 2
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Linux 中,可以使用多进程实现文件拷贝。下面是一个简单的示例代码,展示了如何使用多进程进行文件拷贝: ```c #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <fcntl.h> #define BUF_SIZE 4096 void copy_file(const char* source, const char* destination) { int source_fd, dest_fd; ssize_t bytes_read, bytes_written; char buffer[BUF_SIZE]; // 打开源文件 source_fd = open(source, O_RDONLY); if (source_fd == -1) { perror("open"); exit(EXIT_FAILURE); } // 创建并打开目标文件 dest_fd = open(destination, O_WRONLY | O_CREAT | O_TRUNC, 0644); if (dest_fd == -1) { perror("open"); exit(EXIT_FAILURE); } // 创建子进程 pid_t pid = fork(); if (pid == -1) { perror("fork"); exit(EXIT_FAILURE); } if (pid == 0) { // 子进程负责拷贝数据 while ((bytes_read = read(source_fd, buffer, BUF_SIZE)) > 0) { bytes_written = write(dest_fd, buffer, bytes_read); if (bytes_written != bytes_read) { perror("write"); exit(EXIT_FAILURE); } } if (bytes_read == -1) { perror("read"); exit(EXIT_FAILURE); } // 关闭文件描述符 close(source_fd); close(dest_fd); exit(EXIT_SUCCESS); } else { // 父进程等待子进程结束 wait(NULL); } } int main() { const char* source = "source.txt"; const char* destination = "destination.txt"; copy_file(source, destination); printf("文件拷贝完成!\n"); return 0; } ``` 在这个示例代码中,我们使用了`open()`函数打开源文件和目标文件,然后使用`fork()`创建了一个子进程。子进程负责从源文件中读取数据,并将数据写入目标文件中,而父进程则等待子进程结束。 需要注意的是,这只是一个简单的示例,可能有一些边界情况没有处理。如果需要在实际环境中使用,请根据实际需求进行适当的修改和完善。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值