android tech.
파일 지우기
zimamdero
2014. 5. 2. 15:10
public void delete(String path) {
File file = new File(path);
if(file.exists()) {
file.delete();
}
}