Imported Upstream version 4.0.18
[platform/upstream/mtools.git] / mcd.c
1 /*  Copyright 1986-1992 Emmet P. Gray.
2  *  Copyright 1996,1997,2000-2002,2009 Alain Knaff.
3  *  This file is part of mtools.
4  *
5  *  Mtools is free software: you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation, either version 3 of the License, or
8  *  (at your option) any later version.
9  *
10  *  Mtools is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with Mtools.  If not, see <http://www.gnu.org/licenses/>.
17  *
18  * mcd.c: Change MSDOS directories
19  */
20
21 #include "sysincludes.h"
22 #include "msdos.h"
23 #include "mainloop.h"
24 #include "mtools.h"
25
26
27 static int mcd_callback(direntry_t *entry, MainParam_t *mp UNUSEDP)
28 {
29         FILE *fp;
30
31         if (!(fp = open_mcwd("w"))){
32                 fprintf(stderr,"mcd: Can't open mcwd .file for writing\n");
33                 return ERROR_ONE;
34         }
35         
36         fprintPwd(fp, entry,0);
37         fprintf(fp, "\n");
38         fclose(fp);
39         return GOT_ONE | STOP_NOW;
40 }
41
42
43 void mcd(int argc, char **argv, int type UNUSEDP)
44 {
45         struct MainParam_t mp;
46
47         if (argc > 2) {
48                 fprintf(stderr, "Mtools version %s, dated %s\n", 
49                         mversion, mdate);
50                 fprintf(stderr, "Usage: %s: [-V] msdosdirectory\n", argv[0]);
51                 exit(1);
52         }
53
54         init_mp(&mp);
55         mp.lookupflags = ACCEPT_DIR | NO_DOTS;
56         mp.dirCallback = mcd_callback;
57         if (argc == 1) {
58                 printf("%s\n", mp.mcwd);
59                 exit(0);
60         } else 
61                 exit(main_loop(&mp, argv + 1, 1));
62 }