0
我有這樣的代碼正確的路徑,什麼是根目錄的SD卡
public static boolean deleteDirectory(File path) {
// TODO Auto-generated method stub
if(path.exists()) {
File[] files = path.listFiles();
for(int i=0; i<files.length; i++) {
if(files[i].isDirectory()) {
deleteDirectory(files[i]);
}
else {
files[i].delete();
}
}
}
return(path.delete());
}
我要調用此方法並刪除SDcards'的內容,我應該用什麼路徑?
你想刪除所有的文件或只是你自己的SD卡中的文件? – nandeesh 2012-08-16 13:40:38
通常情況下/ mnt/sdcard – 2012-08-16 13:41:10
[查找外部SD卡位置]的可能的重複(http://stackoverflow.com/questions/5694933/find-an-external-sd-card-location) – slayton 2012-08-16 13:41:58