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 
mcd_callback(direntry_t * entry,MainParam_t * mp UNUSEDP)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) NORETURN;
mcd(int argc,char ** argv,int type UNUSEDP)44 void mcd(int argc, char **argv, int type UNUSEDP)
45 {
46 	struct MainParam_t mp;
47 
48 	if (argc > 2) {
49 		fprintf(stderr, "Mtools version %s, dated %s\n",
50 			mversion, mdate);
51 		fprintf(stderr, "Usage: %s: [-V] msdosdirectory\n", argv[0]);
52 		exit(1);
53 	}
54 
55 	init_mp(&mp);
56 	mp.lookupflags = ACCEPT_DIR | NO_DOTS;
57 	mp.dirCallback = mcd_callback;
58 	if (argc == 1) {
59 		printf("%s\n", mp.mcwd);
60 		exit(0);
61 	} else
62 		exit(main_loop(&mp, argv + 1, 1));
63 }
64