-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdir.c
65 lines (51 loc) · 1.05 KB
/
dir.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
* Name: MG 2a
* Directory management functions
* Created: Ron Flax (ron@vsedev.vse.com)
* Modified for MG 2a by Mic Kaczmarczik 03-Aug-1987
*/
#include "def.h"
char *wdir;
static char cwd[NFILEN];
/*
* Initialize anything the directory management routines need
*/
void
dirinit()
{
if (!(wdir = getcwd(cwd, NFILEN)))
panic("Can't get current directory!", errno);
}
/*
* Change current working directory
*/
INT
changedir(INT f, INT n)
{
INT s;
char bufc[NFILEN], *adjf;
if ((s=eread("Change default directory: ", bufc, NFILEN, EFFILE)) != TRUE)
return(s);
if (bufc[0] == '~') {
if ((adjf = adjustname(bufc)) == NULL) return FALSE;
stringcopy(bufc, adjf, NFILEN);
}
if (chdir(bufc) == -1) {
ewprintf("Can't change dir to %s", bufc);
return(FALSE);
} else {
if (!(wdir = getcwd(cwd, NFILEN)))
panic("Can't get current directory!", errno);
ewprintf("Current directory is now %s", wdir);
return(TRUE);
}
}
/*
* Show current directory
*/
INT
showcwdir(INT f, INT n)
{
ewprintf("Current directory: %s", wdir);
return(TRUE);
}