tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Tools and Libs > Jodd > IO > How to delete a File

How to delete a File 

Jodd is an open-source java library with lot of reusable components and feature rich utilities. This requires the library jodd-3.3.2.jar to be in classpath. The following example shows how to use FileUtil.deleteFile() API. It deletes the specified file.

File Name  :  
com/bethecoder/tutorials/jodd/io/DeleteFileTest.java 
Author  :  Sudhakar KV
Email  :  [email protected]
   
package com.bethecoder.tutorials.jodd.io;

import java.io.File;
import java.io.IOException;

import jodd.io.FileUtil;

public class DeleteFileTest {

  /**
   @param args
   @throws IOException 
   */
  public static void main(String[] argsthrows IOException {

    FileUtil.deleteFile("C:/Test123/Test.java");
    FileUtil.deleteFile(new File("C:/Test456/Test.java"));
  }

}
   



 
  


  
bl  br