การเชคว่า Directory ว่างหรือไม่ใน Java

นี่คือตัวอย่างง่ายๆสำหรับการเชคว่า directory ว่างหรือมีไฟล์ใดๆอยู่ในนั้นหรือไม่ใน Java.

ตัวอย่าง
package demo.directory;

import java.io.File;

public class CheckEmptyDirectoryExample {

    /**
     * @param args
     */
    public static void main(String[] args) {
        File file = new File("C:\\users\\nopphanan7\\Directory1");

        if (file.isDirectory()) {
            if (file.list().length > 0) {
                System.out.println("Directory is not empty!");
            } else {
                System.out.println("Directory is empty!");
            }
        } else {
            System.out.println("This is not a directory");
        }
    }
}
ผลลัพธ์ที่ได้คือ
Directory is not empty!

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