Java에서 파일의 접근 권한인 Read, Write, Execute 권한을 변경하는 방법에 대해서 소개합니다.
1. File이 어떤 접근 권한을 갖고 있는지 확인
File은 다음과 같이 퍼미션을 확인할 수 있는 API를 제공합니다.
- File.canExecute() : 파일이 execute 권한을 갖고 있으면 true를 리턴, 그렇지 않으면 false를 리턴
- File.canWrite() : 파일이 write 권한을 갖고 있으면 true를 리턴, 그렇지 않으면 false를 리턴
- File.canRead() : 파일이 read 권한을 갖고 있으면 true를 리턴, 그렇지 않으면 false를 리턴
2. File에 접근 권한 Read, Write, Execute 부여
File은 다음과 같이 퍼미션을 설정할 수 있는 API를 제공합니다.
- File.setExecutable() : 파일에 execute 권한 부여, 설정이 성공하면 true를 리턴
- File.setReadable() : 파일에 read 권한 부여, 설정이 성공하면 true를 리턴
- File.setWritable() : 파일에 write 권한 부여, 설정이 성공하면 true를 리턴
3. 권한 변경 예제
먼저 아래 파일의 권한 확인 및 변경할 것입니다. shell에서 권한을 확인해보면 Owner에 Read, Write, Execute 권한이 모두 부여되어있습니다.
$ ls -al sample.txt
-rwxrwxrwx 1 js js 0 10월 10 12:06 sample.txt
다음은 파일의 권한 확인 및 권한을 변경하는 예제입니다. Read, Write, Execute 권한을 모두 제한합니다.
import java.io.File;
import java.io.IOException;
public class FilePermission {
public static void main(String[] args) throws IOException {
File file = new File("/var/tmp/sample.txt");
if(file.exists()){
System.out.println("canExecute: " + file.canExecute());
System.out.println("canWrite: " + file.canWrite());
System.out.println("canRead: " + file.canRead());
file.setExecutable(false);
file.setReadable(false);
file.setWritable(false);
System.out.println("- After changing permissions");
System.out.println("canExecute: " + file.canExecute());
System.out.println("canWrite: " + file.canWrite());
System.out.println("canRead: " + file.canRead());
}
}
}
Output:
canExecute: true
canWrite: true
canRead: true
- After changing permissions
canExecute: false
canWrite: false
canRead: false
위 코드 실행 후, shell에서 다시 파일의 권한을 확인해보면 Owner의 rwx 권한이 모두 회수된 것을 확인할 수 있습니다.
$ ls -al sample.txt
----rwxrwx 1 js js 0 10월 10 12:06 sample.txt
References
Loading script...
Related Posts
- Java - Unsupported class file major version 61 에러
- Java - String.matches()로 문자열 패턴 확인 및 다양한 예제 소개
- Java - 문자열 공백제거 (trim, replace)
- Java - replace()와 replaceAll()의 차이점
- Java - ArrayList 초기화, 4가지 방법
- Java - 배열 정렬(Sorting) (오름차순, 내림차순)
- Java - 문자열(String)을 비교하는 방법 (==, equals, compare)
- Java - StringBuilder 사용 방법, 예제
- Java - 로그 출력, 파일 저장 방법 (Logger 라이브러리)
- Java IllegalArgumentException 의미, 발생 이유
- Java - NullPointerException 원인, 해결 방법
- Seleninum의 ConnectionFailedException: Unable to establish websocket connection 해결
- Java - compareTo(), 객체 크기 비교
- Java - BufferedWriter로 파일 쓰기
- Java - BufferedReader로 파일 읽기
- Java charAt() 함수 알아보기
- Java - BigInteger 범위, 비교, 연산, 형변환
- Java contains()로 문자(대소문자 X) 포함 확인
- Java - Set(HashSet)를 배열로 변환
- Java - 문자열 첫번째 문자, 마지막 문자 확인
- Java - 문자열 한글자씩 자르기
- Java - 문자열 단어 개수 가져오기
- Java - 1초마다 반복 실행
- Java - 배열을 Set(HashSet)로 변환
- Java - 여러 Set(HashSet) 합치기
- Java - 명령행 인자 입력 받기
- Java - 리스트 역순으로 순회, 3가지 방법
- Java - 특정 조건으로 리스트 필터링, 3가지 방법
- Java - HashMap 모든 요소들의 합계, 평균 계산
- Java - 특정 조건으로 HashMap 필터링
- Java - 싱글톤(Singleton) 패턴 구현
- Java - 숫자 왼쪽에 0으로 채우기
- Java - String 배열 초기화 방법
- Java - 정렬된 순서로 Map(HashMap) 순회
- Java - HashMap에서 key, value 가져오기