免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12
最近访问板块 发新帖
楼主: zneilnet
打印 上一主题 下一主题

[C] linux环境下支持通配符的文件拷贝功能 [复制链接]

论坛徽章:
0
11 [报告]
发表于 2011-03-16 11:22 |只看该作者
三楼说的很清楚了,就是你在命令行输入命令时,linux中的shell已经为你展开了文件名通配,这是由shell完成的,你的程序不用管的,一定要自己处理,就用glob吧

论坛徽章:
0
12 [报告]
发表于 2011-03-16 14:06 |只看该作者
回复 11# blacktt


    哦,那如果在命令行中输入:<程序名> /home/sd/Desktop/ab/*.zip /home/sd/Desktop/cd 的话,argc的值为什么不是3呢??

论坛徽章:
1
2015年辞旧岁徽章
日期:2015-03-03 16:54:15
13 [报告]
发表于 2011-03-16 17:23 |只看该作者
回复  flw


    什么都不用做啊??我不是很懂,麻烦大哥讲讲吧。
zneilnet 发表于 2011-03-16 10:32

你先不要考虑通配符的情况,做一个程序,比如实现:

mycp file1 file2 file3 foo/

然后你再试着用通配符调用一下,然后你就会神奇的发现,你居然已经实现了一个支持通配符功能的文件拷贝程序!

论坛徽章:
0
14 [报告]
发表于 2011-03-17 13:33 |只看该作者
回复 13# flw


    哦,我现在的程序接受的两个参数,argv[1] 是源文件的路径,argv[2]是目标文件的路径,那为什么在命令行中输入<程序名> /home/ad/* /home/ad/fg 之后,argc会不是3呢?

论坛徽章:
0
15 [报告]
发表于 2011-03-17 13:56 |只看该作者
回复 14# zneilnet


    前面几位跟你说的很清楚了吧,shell会把通配符展开,然后传到你的程序里

论坛徽章:
0
16 [报告]
发表于 2011-03-17 14:35 |只看该作者
回复 15# madoldman


    哦,谢谢哈,我比较笨,

论坛徽章:
0
17 [报告]
发表于 2011-03-17 16:41 |只看该作者
man 3 glob

论坛徽章:
0
18 [报告]
发表于 2011-03-17 20:54 |只看该作者
回复 17# JohnBull


    哦,谢谢咯

论坛徽章:
0
19 [报告]
发表于 2011-03-25 17:08 |只看该作者
在各位的帮助下,小弟完成了相应的功能,代码如下:
  1. #include <stdio.h>
  2. #include <dirent.h>
  3. #include <errno.h>
  4. #include <sys/stat.h>
  5. #include <string.h>
  6. #include <fcntl.h>
  7. #include <cstdlib>
  8. #include <unistd.h>
  9. #include <fnmatch.h>
  10. #define BUFFER_SIZE 1048576

  11. void copy_file(char *src_path, char *dst_path)
  12. {
  13.         int from_fd;
  14.         int to_fd;
  15.         int bytes_read;
  16.         int bytes_write;
  17.         char buffer[BUFFER_SIZE];
  18.         char *p;

  19.         if((from_fd = open(src_path, O_RDONLY)) == -1) {
  20.                 fprintf(stderr, "Open %s Error:%s\n", src_path, strerror(errno));
  21.                 exit(1);
  22.         }

  23.         if((to_fd = open(dst_path, O_WRONLY|O_CREAT, S_IRUSR|S_IWUSR)) == -1) {
  24.                 fprintf(stderr,"Open %s Error:%s\n", dst_path, strerror(errno));
  25.                 exit(1);
  26.         }

  27.         while((bytes_read = read(from_fd, buffer, BUFFER_SIZE))) {
  28.                 if((bytes_read == -1) && (errno != EINTR)) {
  29.                         fprintf(stderr,"read  %s Error:%s\n", src_path, strerror(errno));
  30.                         break;
  31.                 }
  32.                 else if(bytes_read > 0) {
  33.                         p = buffer;
  34.                         while((bytes_write = write(to_fd, p, bytes_read))) {
  35.                                 if((bytes_write == -1) && (errno != EINTR)) {
  36.                                         fprintf(stderr,"write %s Error:%s\n", dst_path, strerror(errno));
  37.                                         break;
  38.                                 }
  39.                                 else if(bytes_write == bytes_read)
  40.                                         break;
  41.                                 else if(bytes_write > 0) {
  42.                                         p += bytes_write;
  43.                                         bytes_read -= bytes_write;
  44.                                 }
  45.                         }
  46.                         if(bytes_write == -1) {
  47.                                 fprintf(stderr,"write %s Error:%s\n", dst_path, strerror(errno));
  48.                                 break;
  49.                         }
  50.                 }
  51.         }
  52.         close(from_fd);
  53.         close(to_fd);
  54. }


  55. void copy_dir(char *name,char *p,char *dst)
  56. {
  57.         DIR *dp;
  58.         DIR *dp1;
  59.         char pp[255];
  60.         char pn[255];
  61.         struct stat sbuf;
  62.         struct dirent *dir;

  63.         if((dp = opendir(name)) == NULL) {
  64.                 printf("Open Directory %s Error:%s\n", name, strerror(errno));
  65.                 exit(1);
  66.                 }
  67.         while ((dir = readdir(dp)) != NULL) {
  68.                 if (dir->d_ino==0)
  69.                         continue;
  70.                 strcpy(pn,name);
  71.                 strcat(pn,"/");
  72.                 strcat(pn,dir->d_name);
  73.                 strcpy(pp,dst);
  74.                 strcat(pp,"/");
  75.                 strcat(pp,dir->d_name);
  76.                 if (lstat(pn,&sbuf) < 0) {
  77.                         perror(pn);
  78.                         closedir(dp);
  79.                         exit(1);
  80.                 }

  81.                 if ( ((sbuf.st_mode & S_IFMT) != S_IFLNK) &&
  82.                      ((sbuf.st_mode & S_IFMT) == S_IFDIR) &&
  83.                      (strcmp(dir->d_name, ".") != 0) &&
  84.                      (strcmp(dir->d_name, "..") != 0) ) {
  85.                         if((dp1 = opendir(pn)) == NULL) {
  86.                                 printf("Open Directory %s Error:%s\n",pn,strerror(errno));
  87.                                 exit(1);
  88.                         }
  89.                         if((mkdir(pp, 0700)))
  90.                                 break;
  91.                         copy_dir(pn,p,pp);
  92.                 }

  93.                 else if ( ((sbuf.st_mode & S_IFMT) != S_IFLNK) &&
  94.                           ((sbuf.st_mode & S_IFMT) == S_IFREG) &&
  95.                           (strcmp(dir->d_name,".") != 0) &&
  96.                           (strcmp(dir->d_name, "..") != 0) ) {
  97.                                         if(fnmatch(p,dir->d_name,FNM_PATHNAME|FNM_PERIOD)== 0)
  98.                            copy_file(pn,pp);
  99.                                         else if(fnmatch(p,dir->d_name,FNM_PATHNAME|FNM_PERIOD)== FNM_NOMATCH)
  100.                                           continue;
  101.                 }
  102.         }
  103. }


  104. int main(int argc,char **argv)
  105. {

  106.         char *program_name;
  107.         DIR *dp,*dq;
  108. //       struct dirent *dir;



  109.         program_name = argv[0];
  110.         if(argc != 4) {
  111.                 printf("%d",argc);
  112.                 fprintf(stderr,"Usage:%s fromdir todir\n", argv[0]);
  113.                 exit(1);
  114.         }
  115.         if((dp = opendir(argv[1])) == NULL) {
  116.                 printf("Open Directory %s Error:%s\n", argv[1], strerror(errno));
  117.                 exit(1);
  118.         }
  119.                 if((dq = opendir(argv[3])) == NULL)
  120.                 {
  121.                         if((mkdir(argv[3],0777)))
  122.                         {
  123.                                 printf("make dir %s is failed \n",argv[3]);
  124.                                 exit(1);
  125.                         }
  126.                 }

  127.         copy_dir(argv[1], argv[2],argv[3]);

  128.         closedir(dp);
  129.                 closedir(dq);
  130.         exit(0);
  131. }
复制代码
编译:gcc -Wall copy_file.cc -o copy
执行:./copy /home/zneil/Desktop "*.zip" /home/zneil/Desktop/abc
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP