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