Java Delete Folder method

Source: Internet
Author: User

Java Delete Folder method

File File = new file ("D:/defonds/temp");



If "D:/defonds/temp" is an empty directory, you can delete it successfully. However, if it is a non-empty directory, you cannot delete it successfully, you must delete its child files (directories) cleanly before you can delete them. You can delete a Non-empty folder successfully by using the following methods:

Recursively delete folder
    private void DeleteFile (file file) {
     if (file.exists ()) {//Determine if file exists
      if (File.isfile ()) {// Determine if File
       file.delete ()//delete file 
      } else if (File.isdirectory ()) {//Otherwise if it is a directory
       file[] files = file.listfiles () ;//Declare all files under the directory files[];
       for (int i = 0;i < Files.length;i + +) {//traverse directory for all Files
        this.deletefile (files[i])//To iterate
       each file by this method File.delete ()//delete folder
      }
     else {
      System.out.println ("Deleted file does not exist");
     }
    


Or use this method below, also very good:

	public static void Deleteallfilesofdir (File path) {
		if (!path.exists ()) return
			;
		if (Path.isfile ()) {
			path.delete ();
			return;
		}
		file[] files = path.listfiles ();
		for (int i = 0; i < files.length i++) {
			deleteallfilesofdir (files[i]);
		Path.delete ();
	}


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.