Java tutorial
//package com.java2s; //License from project: Apache License import java.io.*; public class Main { public static void chmod(String mode, String path) { try { String command = "chmod " + mode + " " + path; Runtime runtime = Runtime.getRuntime(); Process process = runtime.exec(command); process.waitFor(); } catch (IOException e) { e.printStackTrace(); } catch (InterruptedException e) { e.printStackTrace(); } } }