การลบไฟล์ใน Java

ในการลบไฟล์ที่มีอยู่แล้วใน Java นั้นเราใช้ File.delete() ครับ และต่อไปนี้จะทำการลบไฟล์ "C:\\users\\nopphanan7\\newfile.txt"  

ดังตัวอย่าง :
package demo.file;

import java.io.File;

public class DeleteFileExample {
    /**
     * @param args
     */
    public static void main(String[] args) {
        try {

            File file = new File("C:\\users\\nopphanan7\\newfile.txt");

            if (file.delete()) {
                System.out.println(file.getName() + " is deleted!");
            } else {
                System.out.println("Delete operation is failed.");
            }

        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

ผลลัพธ์ที่ได้คือ
newfile.txt is deleted!

About Nop

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.
    Blogger Comment

0 comments:

Post a Comment