Denis_s

HW 5.2.2main

Oct 13th, 2014
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5 0.72 KB | None | 0 0
  1. /**
  2.  * Created by denis on 12.10.14.
  3.  */
  4. public class Main {
  5.     public static void main(String[] args) throws InterruptedException {
  6.  
  7.         System.out.printf("Create: \t \t %s\n", "cr [путь к файлу]");
  8.         System.out.printf("Copy: \t \t \t %s\n", "cp [путь к файлу] [путь к файлу]");
  9.         System.out.printf("Remove/Rename: \t %s\n", "rm [путь к файлу] [путь к файлу]");
  10.         System.out.printf("Delete: \t \t %s\n", "del [путь к файлу]");
  11.         System.out.println("For end of Program input \"exit\" ");
  12.  
  13.         while (true) {
  14.             System.out.print("\ninput your command: ");
  15.             FileOperations.inputCommand();
  16.         }
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment