Deleting the file in Java program

  1. import java.io.*;  
  2.   
  3. public class DeleteFile{  
  4.     private static void deletefile(String file){  
  5.         File f1 = new File(file);  
  6.         boolean success = f1.delete();  
  7.         if (!success){  
  8.             System.out.println("Deletion failed.");  
  9.             System.exit(0);  
  10.         }else{  
  11.             System.out.println("File deleted.");  
  12.         }  
  13.     }  
  14.     public static void main(String[] args){  
  15.         switch(args.length){  
  16.             case 0: System.out.println("File has not mentioned.");  
  17.                     System.exit(0);  
  18.             case 1: deletefile(args[0]);  
  19.                     System.exit(0);  
  20.             default : System.out.println("Multiple files are not allow.");  
  21.                       System.exit(0);  
  22.         }  
  23.     }