-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTerminal.java
More file actions
344 lines (279 loc) · 12.7 KB
/
Terminal.java
File metadata and controls
344 lines (279 loc) · 12.7 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
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
339
340
341
342
343
344
package terminal;
import java.io.BufferedReader;
import java.io.EOFException;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintWriter;
import static java.lang.System.in;
import java.nio.file.Files;
import java.util.ArrayList;
import java.util.Date;
import java.util.NoSuchElementException;
import java.util.Scanner;
public class Terminal {
/**
* @param args the command line arguments
*/
public static File defaultDirectory , currentFile ;//working directory ;
//without parametar
public void cd() {
String str=pwd();
str=defaultDirectory.getPath();
currentFile=new File (str);
//System.out.println("currentFile.getPath()=="+currentFile.getPath());
}
//with parametar
public void cd(String path) {
File newDir = new File(path);
String str=pwd();
str =newDir.getPath();
currentFile=new File(str);
//System.out.println("currentFile.getPath()=="+currentFile.getPath());
}
//without parameter
public void ls() {
//list all fils on current file
//display on console screen
String arr[] = currentFile.list();
for (String str : arr)
System.out.println(str);
}
//with parameter
public void ls(String filePath,boolean append ) {
String arr[] = currentFile.list();
try {
//create new file and/or oppen it in mood append
//write on this file the list of all files on current file
File file=new File(filePath);
if (!filePath.contains(":")){
file=new File(currentFile.getPath()+ File.separator + filePath);
// file.getAbsolutePath();
}
//file.getAbsolutePath();
if (append==false){
PrintWriter out ;
out = new PrintWriter(new FileOutputStream(file),append);
for (String str : arr)
out.println(str);
out.close();
}
else if (append==true){
FileWriter fileWriter = new FileWriter(file, append); //Set true for append mode
PrintWriter printWriter = new PrintWriter(fileWriter);
for (String str : arr)
printWriter.println(str); //New line
printWriter.close();
}
} catch (Exception e) {
System.out.println(e.getMessage());
}
}
//clear with print 20 empty lines
public void clear (){
for (int i=0;i<20;i++){
System.out.println();
}
}
/*cp(String sourcePath, String destinationPath)--> copy the contents of 1st file to the 2nd file.
If the 2nd file doesn’t exist,
then first it creates one and content is copied to it.
But if it existed then it is simply overwritten without any warning. */
public void cp(String srcPath, String destPath) {
try {
File source = new File(srcPath);
File destination = new File(destPath);
if ((!srcPath.contains(":")) && (!destPath.contains(":"))){
source=new File(currentFile.getPath()+ File.separator + srcPath);
destination=new File(currentFile.getPath()+ File.separator + destPath);
}
if (source.isFile()){//check if source dosn't a directory.
//srcPath //destPath
Files.copy(source.toPath(),destination.toPath());
}//File.Copy(String, String) method overload to copy text (.txt) files.
//this overload does not allow overwriting.
else {
System.out.println(source.toPath());
System.out.println(" is a directory and cp takes files as arguments not directories");
}
} catch (Exception e) {
System.out.println(e.getMessage());
}
}
public void mv(String srcPath, String destPath) {
try {
File source = new File(srcPath);
File destination = new File(destPath);
if ((!srcPath.contains(":")) && (!destPath.contains(":"))){
source=new File(currentFile.getPath()+ File.separator + srcPath);
destination=new File(currentFile.getPath()+ File.separator + destPath);
}
Files.move(source.toPath(), destination.toPath());//.move();-->copies the file
//to destination and then deletes
//the original copy from the source.
} catch (Exception e) {
System.out.println(e.getMessage());
}
}
public void rm(String filePath) {
File file = new File(filePath);
if (!filePath.contains(":")) {
file=new File(currentFile.getPath()+ File.separator + filePath);
}
if (file.isDirectory()) {
//System.out.println("dir.");
String arr[] = file.list();
for (String str : arr) {
System.out.println(str);
File tempFile = new File(filePath +'\\'+ str);
if (tempFile.isFile())
//System.out.println("file");
tempFile.delete();
}
}
file.delete();
}
public void rmdir(String dirPath){
File file=new File(dirPath);
if (!dirPath.contains(":")) {
file=new File(currentFile.getPath()+ File.separator + dirPath);
}
if (file.isDirectory())
file.delete();
}
/* public void rmDir(String dirPath){
File file =new File (dirPath);
if (file.isDirectory())
file.delete();
}*/
public void cat(String filePath) {
try {
File file = new File(filePath);
if (!filePath.contains(":")) {
file=new File(currentFile.getPath()+ File.separator + filePath);
}
Scanner in = new Scanner(file);
while (in.hasNextLine()){
System.out.println(in.nextLine());
}
in.close();
} catch (Exception e) {
System.out.println(e.getMessage());
}
}
public void cat(String arr[]) {
for(String str:arr){
//System.out.println(str);
//System.out.println(arr);
try {
File file = new File(str);
if (!str.contains(":")) {
file=new File(currentFile.getPath()+ File.separator + str);
}
Scanner in = new Scanner(file);
while (in.hasNextLine())
System.out.println(in.nextLine());
//cat C:\Users\lenovo\Documents\\t1.txt C:\Users\lenovo\Documents\\t1.txt C:\Users\lenovo\Documents\\t1.txtSystem.out.println("------------------");
in.close();
}catch (Exception e) {
System.out.println(e.getMessage());
}
}
}
public boolean mkdir(String dirPath){
File file = new File (dirPath);
if (!dirPath.contains(":")) {
file=new File(currentFile.getPath()+ File.separator + dirPath);
}
return file.mkdir();//bulit in function in pakcage File
}
public String pwd(){
return currentFile.getPath();
}
public void date(){
Date date=new Date();
System.out.println(date);
}
public void more (String filePath) throws FileNotFoundException{
File file =new File (filePath);
if (!filePath.contains(":")) {
file=new File(currentFile.getPath()+ File.separator + filePath);
}
Scanner in =new Scanner (file);
Scanner rep=new Scanner(System.in);
int count =0;
while (in.hasNextLine()){
System.out.println(in.nextLine());
count++;
if (count==10){
System.out.println("you need more?" +'\n'+ " >>if yes enter yes " +'\n'+ " >>if No enter no ");
String reply=rep.nextLine();
if (reply.equals("yes")){
count=0;
}
else
return ;
}
}
in.close(); //rep.close();
}
public void help(){
System.out.println("cd directoryPath--> moving to another directory.");
System.out.println("ls--> List / print all files and directories in current path.");
System.out.println("rm filePath or directoryPath --> removing file or removing files from a directory");
System.out.println("rmdir directoryPath --> delete an empty directory.");
System.out.println("mkdir directoryPath --> creating new directory.");
System.out.println("pwd --> print working directory.");
System.out.println("cat FilePath --> Printing the content of a text file.");
System.out.println("cat FilePath1 FilePath2 to FilePath3 --> Printing the content of file1 and file2 in file3.");
System.out.println("more FilePath --> Printing the content of a text file in a scrollable manner.");
System.out.println("cp SourcePath DestinationPath --> Copying the content from SourceFile to DestinationFile.");
System.out.println("mv SourcePath DestinationPath --> Moving the content from SourceFile to DestinationFile.");
System.out.println("clear --> Clearing console content.");
System.out.println("args commandName --> List all command arguments.");
System.out.println("date --> Current date/time.");
System.out.println("exit --> Stop all.");
}
public void args(String command) {
if (command.equals("cd")) {
System.out.println("No parameters or .. --> change current directory to the default directory");
System.out.println("Number of args is 1 --> New directoryPath to change to");
}
else if (command.equals("ls")){
System.out.println("No parameters");
System.out.println("Number of args is 1 --> new file to list in ");
}else if (command.equals("rm"))
System.out.println("Number of args is 1 --> FilePath to be removed or directoryPath to remove files there");
else if (command.equals("rmdir"))
System.out.println("Number of args is 1 --> Path of empty directory to be removed");
else if (command.equals("mkdir"))
System.out.println("Number of args is 1 --> DirectoryPath to be created");
else if (command.equals("pwd")){
System.out.println("No parameters");
System.out.println("Number of args is 1 --> FilePath to save cuurentdir in it");}
else if (command.equals("more"))
System.out.println("Number of args is 1 : FilePath to be displayed");
else if (command.equals("cat")) {
System.out.println("There are 3 options :");
System.out.println("Number of args is 1 : FilePath to be displayed");
System.out.println("Number of args is 2 : FilePath1 and FilePath2 to be displayed");
System.out.println("Number of args is 4 : FilePath1 FilePath2 > FilePath3");
} else if (command.equals("cp"))
System.out.println("Number of args is 2 : SourcePath DestinationPath");
else if (command.equals("mv"))
System.out.println("Number of args is 2 : SourcePath DestinationPath");
else if (command.equals("date"))
System.out.println("No parameters");
else System.out.println("Error");
}
/*
public void cp(String sourcePath, String destinationPath );**
public void mv(String sourcePath, String destinationPath);**
public void rm(String sourcePath);
public void pwd();
public void cat(String[] paths);
*/
}