728x90
반응형
// 디렉터리 삭제
public void setDirEmpty(String dirName){
// 사용 예시 // setDirEmpty("/디렉터리명 ");
String path = Environment.getExternalStorageDirectory().toString() + dirName;
Log.d("Woongs","디렉터리 경로 : "+path);
File dir = new File(path);
File[] childFileList = dir.listFiles();
if (dir.exists()) {
Log.d("Woongs","디렉터리 있음");
for (File childFile : childFileList) {
if (childFile.isDirectory()) {
setDirEmpty(childFile.getAbsolutePath()); //하위 디렉토리
} else {
childFile.delete(); //하위 파일
}
}
dir.delete();
}
}
728x90
반응형
'Android' 카테고리의 다른 글
이미지 뷰 자체를 사이즈 재지정 하기 (0) | 2020.06.03 |
---|---|
android swipRefreshLayout 갱신 하기 + listview Scroll (0) | 2020.05.26 |
fragment 현제 보고 있는 페이지 가지고 오기 (0) | 2020.05.19 |
Fragment 백스텍 비우기 (0) | 2020.04.25 |
BottomNavigationView + frameLayout (fragment) (0) | 2020.04.25 |