我已经尝试过这些语法,但为什么它不起作用?
我真的很高兴你的建议。
之前谢谢。抱歉英语不好。
package priviledge;
import java.io.File;
import java.io.IOException;
/**
*
* @author DINA
*/
public class Main {
/**
* @param args the command line arguments
*/
public static void main(String[] args) throws InterruptedException, IOException {
File f = new File("C:/lala/images1.jpg");
permission(f);
}
public static void permission(File src) throws InterruptedException, IOException {
// win32 command line variant
Process p = Runtime.getRuntime().exec("cacls 000 " + src.getPath());
p.waitFor(); // p.waitFor()