Java tutorial
//package com.java2s; //License from project: Open Source License import java.io.IOException; public class Main { public static void setFileOrDirRW(String permission, String path) { try { String command = "chmod" + " " + permission + " " + path; Runtime runtime = Runtime.getRuntime(); runtime.exec(command); } catch (IOException e) { e.printStackTrace(); } } }