-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccess_filename.c
More file actions
83 lines (71 loc) · 2.32 KB
/
Copy pathaccess_filename.c
File metadata and controls
83 lines (71 loc) · 2.32 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <conio.h>
#define MAX_FILES 10
#define NAME_LENGTH 10
typedef struct {
char dname[NAME_LENGTH];
char fname[MAX_FILES][NAME_LENGTH];
int fcnt;
} Directory;
int main() {
int i, choice;
char filename[NAME_LENGTH];
Directory dir;
dir.fcnt = 0;
printf("\nEnter name of directory -- ");
scanf("%9s", dir.dname);
while(1) {
printf("\n\n1. Create File\t2. Delete File\t3. Search File");
printf("\n4. Display Files\t5. Exit\nEnter your choice -- ");
scanf("%d", &choice);
switch(choice) {
case 1:
printf("\nMasukkan nama file -- ");
scanf("%9s", dir.fname[dir.fcnt]);
dir.fcnt++;
break;
case 2:
printf("\nMasukkan nama file-- ");
scanf("%9s", filename);
for(i = 0; i < dir.fcnt; i++) {
if(strcmp(filename, dir.fname[i]) == 0) {
printf("File %s terhapus", filename);
strcpy(dir.fname[i], dir.fname[dir.fcnt-1]);
break;
}
}
if(i == dir.fcnt)
printf("File %s tidak ditemukan", filename);
else
dir.fcnt--;
break;
case 3:
printf("\nMasukkan nama file-- ");
scanf("%9s", filename);
for(i = 0; i < dir.fcnt; i++) {
if(strcmp(filename, dir.fname[i]) == 0) {
printf("File %s ditemukan ", filename);
break;
}
}
if(i == dir.fcnt)
printf("File %s tidak ditemukan", filename);
break;
case 4:
if(dir.fcnt == 0)
printf("\nDirektori kosong");
else {
printf("\nThe Files are -- ");
for(i = 0; i < dir.fcnt; i++)
printf("\t%s", dir.fname[i]);
}
break;
default:
exit(0);
}
}
getch();
return 0;
}