Friday 11 November 2016

Java Tutorial : Java IO (Java File - How to delete a file)

FileDemo1.java
import java.io.File;

public class FileDemo1
{

    public static void main(String[] args)
    {
        File file = new File("D:/work/myfile.txt");
        /*
         * Deletes the file or directory denoted by this
         * abstract pathname.
         * 
         * Returns: true if and only if the file or
         * directory is successfully deleted; false
         * otherwise
         */
        boolean success = file.delete();
        System.out.println("success = " + success);
    }

}
Output
success = true
FileDemo2.java
import java.io.File;

public class FileDemo2
{

    public static void main(String[] args)
    {
        File file = new File("D:/work/misc");
        /*
         * Deletes the file or directory denoted by this
         * abstract pathname.
         * 
         * Returns: true if and only if the file or
         * directory is successfully deleted; false
         * otherwise
         */
        boolean success = file.delete();
        System.out.println("success = " + success);
    }

}
Output
success = true
Click the below link to download the code:
https://sites.google.com/site/ramj2eev1/home/javabasics/JavaIODemo_File_delete_App.zip?attredirects=0&d=1

Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/JavaIODemo_File_delete_App

Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/882ffbbbc9c8fbb765fb4869059bc3ee253ad31b/BasicJava/JavaIODemo_File_delete_App/?at=master

See also:
  • All JavaEE Viedos Playlist
  • All JavaEE Viedos
  • All JAVA EE Links
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • Java Collection Framework Tutorial
  • JAVA Tutorial
  • Kids Tutorial
  • No comments:

    Post a Comment