Java tutorial
import java.io.File; public class Main { public static void main(String[] args) { File f = new File("test.txt"); // set executable() boolean bool = f.setExecutable(true, true); System.out.println("setExecutable() succeeded?: " + bool); // can execute bool = f.canExecute(); System.out.print("Can execute?: " + bool); } }