기본 콘텐츠로 건너뛰기

3월, 2016의 게시물 표시

Android, delete directory

public static void deleteRecursive(File fileOrDirectory) { if (fileOrDirectory.isDirectory()) for (File child : fileOrDirectory.listFiles()) deleteRecursive (child); fileOrDirectory.delete(); } ref http://stackoverflow.com/questions/3775694/deleting-folder-from-java

linux, install Android Studio

* Android Studio download url http://developer.android.com/intl/ko/sdk/index.html * install java and setting http://stackoverflow.com/questions/17033726/android-studio-error-after-studio-sh * remove open java sdk and download from oracle (Kr) https://opentutorials.org/module/516/5558