Fixed cp so it works as God intended it to.
[platform/upstream/busybox.git] / coreutils / mv.c
1 /*
2  * Mini mv implementation for busybox
3  *
4  *
5  * Copyright (C) 1999 by Lineo, inc.
6  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21  *
22  */
23
24 #include "internal.h"
25 #include <stdio.h>
26 #include <time.h>
27 #include <utime.h>
28 #include <dirent.h>
29
30
31 static const char mv_usage[] = "mv SOURCE DEST\n"
32 "   or: mv SOURCE... DIRECTORY\n\n"
33 "Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.\n";
34
35
36 static const char *srcName;
37 static const char *destName;
38 static int dirFlag = FALSE;
39
40 static int fileAction(const char *fileName, struct stat* statbuf)
41 {
42     char newdestName[NAME_MAX];
43
44     fprintf(stderr, "srcName='%s'  destName='%s'\n", srcName, destName);
45     strcpy(newdestName, destName);
46     strcat(newdestName, "/");
47     strcat(newdestName, strstr(fileName, fileName));
48     fprintf(stderr, "newdestName='%s'\n", newdestName); 
49     return (copyFile(fileName, newdestName, TRUE, TRUE));
50 }
51
52
53 extern int mv_main(int argc, char **argv)
54 {
55     char newdestName[NAME_MAX];
56     char *skipName;
57
58     if (argc < 3) {
59         usage (mv_usage);
60     }
61     argc--;
62     argv++;
63
64     destName = argv[argc - 1];
65     dirFlag = isDirectory(destName);
66
67     if ((argc > 3) && dirFlag==FALSE) {
68         fprintf(stderr, "%s: not a directory\n", destName);
69         exit (FALSE);
70     }
71     
72     while (argc-- > 1) {
73         srcName = *(argv++);
74         skipName = strrchr(srcName, '/');
75         if (skipName) 
76             skipName++;
77         strcpy(newdestName, destName);
78         if (dirFlag==TRUE) {
79             strcat(newdestName, "/");
80             if ( skipName != NULL)
81                 strcat(newdestName, strstr(srcName, skipName));
82             else
83                 strcat(newdestName, srcName);
84         }
85         if (isDirectory(srcName)==TRUE && newdestName[strlen(newdestName)] != '/') {
86                 strcat(newdestName, "/");
87             createPath(newdestName, 0777);
88             fprintf(stderr, "srcName = '%s'\n", srcName);
89             fprintf(stderr, "newdestName = '%s'\n", newdestName);
90             if (recursiveAction(srcName, TRUE, TRUE, FALSE,
91                                    fileAction, fileAction) == FALSE) 
92             {
93                 exit( FALSE);
94             }
95             exit( TRUE);
96         } else {
97             if (copyFile(srcName, newdestName, FALSE, FALSE)  == FALSE) {
98                 exit( FALSE);
99             }
100             if (unlink (srcName) < 0) {
101                 perror (srcName);
102                 exit( FALSE);
103             }
104         }
105     }
106     exit( TRUE);
107 }