철스토리

안드로이드 파일 및 폴더(하위폴더까지) 삭제하는 방법 본문

안드로이드/프로그래밍

안드로이드 파일 및 폴더(하위폴더까지) 삭제하는 방법

HyunChol 2016. 12. 28. 11:05
반응형
//파일 & 폴더 삭제
public static void removeDir(String mRootPath) {
File file = new File(mRootPath);
File[] childFileList = file.listFiles();
for(File childFile : childFileList)
{
if(childFile.isDirectory()) {
removeDir(childFile.getAbsolutePath()); //하위 디렉토리
}
else {
childFile.delete(); //하위 파일
}
}

file.delete(); //root 삭제
}


반응형
Comments