วันอาทิตย์ที่ 16 ตุลาคม พ.ศ. 2559

การลบไฟล์ใน 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!
 

ไม่มีความคิดเห็น:

แสดงความคิดเห็น

Set MongoDB in the windows path environment

  Let’s set MongoDB in the windows environment in just a few steps. Step 1: First download a suitable MongoDB version according to your mach...