1
我使用SD卡保存數據,我的問題是,當應用程序正在運行,並且有人刪除此文件夾時,應用程序將失敗。無論如何要通知應用程序,當這個文件夾被刪除?請幫我Android文件夾監視器
我使用SD卡保存數據,我的問題是,當應用程序正在運行,並且有人刪除此文件夾時,應用程序將失敗。無論如何要通知應用程序,當這個文件夾被刪除?請幫我Android文件夾監視器
試試這個。
private static File logFile = null;
String SD_CARD_PATH = Environment.getExternalStorageDirectory().toString();
logFile = new File(SD_CARD_PATH + "/" + "folderName");
if (logFile.exists()){
//exist.so do your work
}
else{
//not exists
}
我正在尋找FileObserver – Bytecode