- JAVA 에서 폴더 생성시 권한 및 소유주 설정

String Folder = "/root/file";

String chmod = "chmod -R 755 " + Folder;

Runtime runtime = Runtime.getRuntime();

Process process = runtime.exec(chmod);

process.waitFor();


- chown 방법도 동일하다.


+ Recent posts