การเชคว่าไฟล์อยู่ในสถานะซ่อนหรือไม่ใน Java

ต่อไปนี้เป็นตัวอย่างการใช้การงาน java.io.File isHidden() การเชคว่าไฟล์อยู่ในสถานะซ่อนหรือไม่.  

หมายเหตุ : ตัว isHidden() นั้นจะขึ้นอยู่กับระบบปฏิบัติการนะครับ ใน UNIX ชื่อไฟล์ที่ขึ้นต้นด้วย "dot" สัญลักษ์คือ('.') เป็นการซ่อนไฟล์ ส่วนใน Windows นั้นจะมีการกำหนดคุณสมบัติของไฟล์ (properties) ไว้ว่าให้เป็น hidden ครับ.
package demo.file;

import java.io.File;

public class FileHidden {

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

        if (file.isHidden()) {
            System.out.println("This file is hidden");
        } else {
            System.out.println("This file is not hidden");
        }
    }
}
ผลลัพธ์ที่ได้คือ
This file is not hidden

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