Linux cp命令实现复制多个文件到目录

Linux cp command implementation to copy multiple files to a Directory

我目前正在学习系统编程并在 C 中遇到了 Linux cp 命令的实现。尽管根据我的理解,该实现允许将一个文件的内容复制到同一目录中的另一个文件并将文件复制到当前目录中的目录中。

您如何更改此代码以允许将多个文件一次复制到一个目录(即 "copy f1.txt f2.txt f3.txt /dirInCurrentDir") 甚至 ("copy d1/d2/d3/f1 d4/d5/d6/f2 d ") 会将 2 个文件复制到目录 d。我知道必须在 main() 中进行更改,但您如何添加到 if-else 语句中?

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <string.h>
#include <dirent.h>
#include <sys/types.h>
#include <sys/stat.h>

#define BUFFERSIZE 1024
#define COPYMORE 0644

void oops(char *, char *);
int copyFiles(char *src, char *dest);
int dostat(char *filename);
int mode_isReg(struct stat info);


int main(int ac, char *av[])
{
  /* checks args */
  if(ac != 3)
  {
    fprintf(stderr, "usage: %s source destination\n", *av);
    exit(1);
  }


   char *src = av[1];
   char *dest = av[2];


   if( src[0] != '/' && dest[0] != '/' )//cp1 file1.txt file2.txt
   {
       copyFiles(src, dest);
   }
   else if( src[0] != '/' && dest[0] == '/' )//cp1 file1.txt /dir 
   {
      int i;
      for(i=1; i<=strlen(dest); i++)
      {
          dest[(i-1)] = dest[i];
      }
      strcat(dest, "/");
      strcat(dest, src);


      copyFiles(src, dest);
  }

  else
  {
      fprintf(stderr, "usage: cp1 source destination\n");
      exit(1);
  }
}



int dostat(char *filename)
{
    struct stat fileInfo;

    //printf("Next File %s\n", filename);
    if(stat(filename, &fileInfo) >=0)
    if(S_ISREG(fileInfo.st_mode))
    return 1;
    else return 0;

    return;
}




int copyFiles(char *source, char *destination)
{
  int in_fd, out_fd, n_chars;
  char buf[BUFFERSIZE];


  /* open files */
  if( (in_fd=open(source, O_RDONLY)) == -1 )
  {
    oops("Cannot open ", source);
  }


  if( (out_fd=creat(destination, COPYMORE)) == -1 )
  {
    oops("Cannot create ", destination);
  }


  /* copy files */
  while( (n_chars = read(in_fd, buf, BUFFERSIZE)) > 0 )
  {
    if( write(out_fd, buf, n_chars) != n_chars )
    {
      oops("Write error to ", destination);
    }


    if( n_chars == -1 )
    {
      oops("Read error from ", source);
    }
  }


    /* close files */
    if( close(in_fd) == -1 || close(out_fd) == -1 )
    {
      oops("Error closing files", "");
    }


    return 1;
}


  void oops(char *s1, char *s2)
  {
    fprintf(stderr, "Error: %s ", s1);
    perror(s2);
    exit(1);
  }

您将遍历所有参数值(从 av[1] 到 av[ac - 2])并将其复制到目标参数,即 av[ac - 1]。

在您的情况下,您会将 av[i] 和 av[ac - 1] 传递给 copyFiles 函数,其中 i 将是您的循环索引。