Java: Supprimer un fichier

Author:

 fichier, java
Download

import java.io.File;
import java.io.IOException;
 
public class Delete
 {
  public static void main(String[] argv) throws IOException
  	 {
 
    File test = new File("c:/test3.txt");
    test.delete();
  }
}