Java File.canExecute()方法

2019-10-16 22:15:46

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

public boolean canExecute()

範例

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

import java.io.File;

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

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

    // true if the file is executable
    boolean bool = f.canExecute();

    // find the absolute path
    String a = f.getAbsolutePath();

    // prints absolute path
    System.out.print(a);

    // prints
    System.out.println(" is executable: " + bool);

  }
}

上面程式碼執行結果如下 -

c:\text.txt is executable: false