Java File.isHidden()方法

2019-10-16 22:16:18

Java Java File.isHidden()方法具有以下語法。

public boolean isHidden()

範例

在下面的程式碼顯示如何使用File.isHidden()方法。


import java.io.File;

public class Main {
  public static void main(String[] args) {

    // create new file
    File f = new File("c:/test.txt");

    // true if the file path is a hidden file
    boolean bool = f.isHidden();

    // get the path // @ w WW.Y  i iB A I . c  o  m 
    String path = f.getPath();

    System.out.print(path + " is file hidden? " + bool);

  }
}

執行上面程式碼,得到以下結果 -

c:\test.txt is file hidden? false