Java File.canExecute()

Syntax

File.canExecute() has the following syntax.

public boolean canExecute()

Example

In the following code shows how to use File.canExecute() method.


//from   w  ww.  j  av a2s  .com

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);

  }
}

The code above generates the following result.