자바 디렉토리 삭제하기(Delete a non-empty directory in JAVA)

자바에서 파일을 삭제하려면 File 클래스에서 delete() 메소드를 사용하면 된다.

File file = new File("pathname");
file.delete();


하지만 delete() 메소드는 해당 path 가 디렉토리일 경우 디렉토리가 비어 있을때만 삭제가 된다. 디렉토리 안에 파일이나 하위 디렉토리가 있을 때 삭제하려면 다음과 같이 recursive 메소드를 사용해서 삭제할 수 있다.

import java.io.File;


class DeleteDir {
	public static void main(String args[]) {
		deleteDirectory(new File(args[0]));
	}
	
	public static boolean deleteDirectory(File path) {
		if(!path.exists()) {
			return false;
		}
		
		File[] files = path.listFiles();
		for (File file : files) {
			if (file.isDirectory()) {
				deleteDirectory(file);
			} else {
				file.delete();
			}
		}
		
		return path.delete();
	}
}


Java SE의 정규 표현식(정규식, Regular Expressions)

IntelliJ IDEA 8.01 Release

8.0 이 나온지 얼마 되지도 않아 8.01이 나왔다.
Release Note를 보니까 버그 fix가 상당히 많은듯...

다운로드 : http://www.jetbrains.com/idea/download/
Release Notes : http://www.jetbrains.com/idea/features/release_notes801.html

관련글
2008/11/18 - [Programming/tool] - IntelliJ IDEA 8 Release

'programming > tool' 카테고리의 다른 글

Eclipse is running in a JRE, but a JDK is required <Maven 이클립스 설정>  (0) 2009.05.07
VisualSVN Server 설치하기  (0) 2008.12.19
VisualSVN Server 소개  (0) 2008.12.15
IntelliJ IDEA 8 Release  (0) 2008.11.18
IntelliJ IDEA 리뷰  (0) 2007.11.09