/**
* 폴더 삭제
* @param path
* @return
*/
public static int deleteDir(String path) {
File file = new File(path);
if (file.exists()) {
File[] childFileList = file.listFiles();
for (File childFile : childFileList) {
if (childFile.isDirectory()) {
deleteDir(childFile.getAbsolutePath());
} else {
childFile.delete();
}
}
file.delete();
return 1;
} else {
return 0;
}
}
'프로그래밍 > Android' 카테고리의 다른 글
Android about Alarmmanager... (0) | 2015.01.19 |
---|---|
Eclipse Contacting software sites has encountered a problem (0) | 2014.11.26 |
Android System Bar Hide (0) | 2014.11.15 |
Android Toast 유틸 클래스 (0) | 2014.11.02 |
Android ListView 아이템과 Button 이벤트를 각각 처리하는 방법 (0) | 2014.11.02 |
댓글