폴더생성 및 폴더삭제
public static File makeDirectory(String dir_path) {
File dir = new File(dir_path);
if (!dir.exists()) {
dir.mkdirs();
}
return dir;
}
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;
}
}
'안드로이드 개발 > 개발팁' 카테고리의 다른 글
JSON String을 JSONObject로 변환하기 (0) | 2015.02.24 |
---|---|
쌓여있는 액티비티 모두 지우기 (0) | 2015.01.20 |
패스를 통해서 비트map 만들기 (0) | 2015.01.12 |
동그랗게 랜더링하기(비트맵) (0) | 2015.01.12 |
자바(안드로이드) 오늘날짜 , 이번달의 마지막날짜 구하기 (0) | 2015.01.12 |