-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppOperation.java
More file actions
26 lines (23 loc) · 1.34 KB
/
AppOperation.java
File metadata and controls
26 lines (23 loc) · 1.34 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
import java.util.Scanner;
public class AppOperation {
Scanner scnr = new Scanner(System.in);
public static void main(String[] args) {
System.out.println("======================================================");
System.out.println("== WELCOME TO LOCKEDME.COM ==");
System.out.println("== DEVELOPPED BY ESSEH ALAGAH KOMLAVI ==");
System.out.println("======================================================");
System.out.println();
System.out.println();
System.out.println("======================================================");
System.out.println("== THE APPLICATION IS DISIGNED TO: ==");
System.out.println("== TO ADD FILE TO A DIRECTORY ==");
System.out.println("== TO DELETE FILE IN A DIRECTORYI ==");
System.out.println("== TO SEARCH FILE IN A DIRECTORY ==");
System.out.println("== TO RETRIEVE FILE IN ASCENDING ORDER ==");
System.out.println("======================================================");
System.out.println();
System.out.println();
System.out.println();
MnOperation1.MnOP();
}
}