[JAVA] 자바 파일 권한 변경 방법
·
STUDY/JAVA
자바 파일 업로드시 권한 변경 방법1. Runtime.getRuntime().exec() 사용import java.io.IOException;public class ChmodExample { public static void main(String[] args) { String destFile = "/path/to/your/file"; // 수정할 파일 경로 try { // chmod -R 777 명령어 실행 Process process = Runtime.getRuntime().exec("chmod -R 777 " + destFile); process.waitFor(); // 명령어 실행 완료 대기 ..