-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathFile_Hier.java
338 lines (327 loc) · 8.54 KB
/
File_Hier.java
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
import java.util.*;
class Directory{
String name;
//String parent;
Vector<String> v;
Vector<Directory> d;
public Directory(String x){
this.name = x;
v = new Vector<String>();
d = new Vector<Directory>();
}
public void insertf(String x){
/* if(v.contains(x)){
x= x+"(1)";
}*/
for(String a:v){
if(a.equals(x)){
//flag = 1;
x = x+"(1)";
break;
}
}
v.addElement(x);
}
public boolean searchf(String x){
//Directory a;
for(Directory a:d){
if(a.searchf(x)){
return true;
}
}
return v.contains(x);
}
public void insert(String x){
for(Directory a:d){
if(a.name.equals(x)){
x = x+"(1)";
break;
}
}
Directory n = new Directory(x);
d.addElement(n);
}
public void delf(String x){
int flag = 0;
for(String a:v){
if(a.equals(x)){
flag = 1;
v.removeElement(a);
break;
}
}
if(flag == 0){
System.out.println("File "+x+" doesn't even exist bro!");
}
else{
System.out.println("File "+x+" was deleted!Hope you're happy!");
}
}
public void del(String x){
int flag = 0;
for(Directory a:d){
if(a.name.equals(x)){
flag = 1;
d.removeElement(a);
break;
}
}
if(flag == 0){
System.out.println("Directory "+x+" doesn't even exist bro!");
}
else{
System.out.println("Directory "+x+" was deleted!Hope you're happy!");
}
}
}
public class File_Hier {
public static void main(String[] args) {
Directory s = new Directory("root");
Stack<Directory> st = new Stack<Directory>();
Scanner sc = new Scanner(System.in);
int ch = 0;
String tp;
// TODO code application logic here
while(ch != 8){
System.out.println("The current Directory is "+s.name);
if(s.d.isEmpty() && s.v.isEmpty()){
System.out.println(s.name+" is an empty directory.");
}
else{
if(!(s.d.isEmpty())){
System.out.println("The List of directories in "+s.name+" are:");
for(Directory a:s.d){
System.out.println(a.name);
}
}
if(!(s.v.isEmpty())){
System.out.println("The List of files in "+s.name+" are:");
for(String a:s.v){
System.out.println(a);
}
}
}
System.out.println("Please Enter your choice:");
System.out.println("1.Add Directory");
System.out.println("2.Select Directory");
System.out.println("3.Delete Directory");
System.out.println("4.Add File");
System.out.println("5.Search File");
System.out.println("6.Delete File");
System.out.println("7.Go back");
System.out.println("8.Exit");
ch = sc.nextInt();
switch(ch){
case 1:
System.out.println("Enter the name of the Directory");
tp = sc.next();
s.insert(tp);
break;
case 2:
System.out.println("Enter the name of the Directory");
int f = 0;
tp = sc.next();
for(Directory p:s.d){
if(p.name.equals(tp)){
f = 1;
st.push(s);
s = p;
break;
}
}
if(f == 0){
System.out.println("No such Directory exists!");
}
break;
case 3:
System.out.println("Enter the name of the Directory");
tp = sc.next();
s.del(tp);
break;
case 4:
System.out.println("Enter the name of the File");
tp = sc.next();
s.insertf(tp);
break;
case 5:
System.out.println("Enter the name of the File");
tp = sc.next();
if(s.searchf(tp)){
System.out.println("File "+tp+" Exists within or within the directories of "+s.name+"!");
}
break;
case 6:
System.out.println("Enter the name of the File");
tp = sc.next();
s.delf(tp);
break;
case 7:
if(st.isEmpty()){
System.out.println("Woah there!You can't go back");
}
else{
s = st.pop();
}
break;
case 8:
System.out.println("Exit Successful");
break;
default:
System.out.println("Invalid Input!Try again");
}
}
}
}
/*------OUTPUT------
The current Directory is root
root is an empty directory.
Please Enter your choice:
1.Add Directory
2.Select Directory
3.Delete Directory
4.Add File
5.Search File
6.Delete File
7.Go back
8.Exit
1
Enter the name of the Directory
abc
The current Directory is root
The List of directories in root are:
abc
Please Enter your choice:
1.Add Directory
2.Select Directory
3.Delete Directory
4.Add File
5.Search File
6.Delete File
7.Go back
8.Exit
1
Enter the name of the Directory
pqr
The current Directory is root
The List of directories in root are:
abc
pqr
Please Enter your choice:
1.Add Directory
2.Select Directory
3.Delete Directory
4.Add File
5.Search File
6.Delete File
7.Go back
8.Exit
2
Enter the name of the Directory
abc
The current Directory is abc
abc is an empty directory.
Please Enter your choice:
1.Add Directory
2.Select Directory
3.Delete Directory
4.Add File
5.Search File
6.Delete File
7.Go back
8.Exit
1
Enter the name of the Directory
xyz
The current Directory is abc
The List of directories in abc are:
xyz
Please Enter your choice:
1.Add Directory
2.Select Directory
3.Delete Directory
4.Add File
5.Search File
6.Delete File
7.Go back
8.Exit
2
Enter the name of the Directory
xyz
The current Directory is xyz
xyz is an empty directory.
Please Enter your choice:
1.Add Directory
2.Select Directory
3.Delete Directory
4.Add File
5.Search File
6.Delete File
7.Go back
8.Exit
4
Enter the name of the File
test
The current Directory is xyz
The List of files in xyz are:
test
Please Enter your choice:
1.Add Directory
2.Select Directory
3.Delete Directory
4.Add File
5.Search File
6.Delete File
7.Go back
8.Exit
2
Enter the name of the Directory
pqr
No such Directory exists!
The current Directory is xyz
The List of files in xyz are:
test
Please Enter your choice:
1.Add Directory
2.Select Directory
3.Delete Directory
4.Add File
5.Search File
6.Delete File
7.Go back
8.Exit
4
Enter the name of the File
test1
The current Directory is xyz
The List of files in xyz are:
test
test1
Please Enter your choice:
1.Add Directory
2.Select Directory
3.Delete Directory
4.Add File
5.Search File
6.Delete File
7.Go back
8.Exit
5
Enter the name of the File
test
File test Exists within or within the directories of xyz!
The current Directory is xyz
The List of files in xyz are:
test
test1
Please Enter your choice:
1.Add Directory
2.Select Directory
3.Delete Directory
4.Add File
5.Search File
6.Delete File
7.Go back
8.Exit
8
Exit Successful!
*/