Java IO Tutorial - Java Files.isExecutable(Path path)








Syntax

Files.isExecutable(Path path) has the following syntax.

public static boolean isExecutable(Path path)

Example

In the following code shows how to use Files.isExecutable(Path path) method.

/*from ww  w  .  ja  v a 2  s  .c  o m*/
import java.nio.file.FileSystems;
import java.nio.file.Files;
import java.nio.file.LinkOption;
import java.nio.file.Path;

public class Main {

    public static void main(String[] args) {

        Path path = FileSystems.getDefault().getPath("C:/tutorial/Java/JavaFX", "Demo.txt");

        boolean is_executable = Files.isExecutable(path);
    }
}