Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Created by denis on 12.10.14.
- */
- public class Main {
- public static void main(String[] args) throws InterruptedException {
- System.out.printf("Create: \t \t %s\n", "cr [путь к файлу]");
- System.out.printf("Copy: \t \t \t %s\n", "cp [путь к файлу] [путь к файлу]");
- System.out.printf("Remove/Rename: \t %s\n", "rm [путь к файлу] [путь к файлу]");
- System.out.printf("Delete: \t \t %s\n", "del [путь к файлу]");
- System.out.println("For end of Program input \"exit\" ");
- while (true) {
- System.out.print("\ninput your command: ");
- FileOperations.inputCommand();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment