我正在尝试在android中实现回收站应用程序,我遇到FileObserver
了观察所有文件的类,但问题FileObserver
只是在文件删除后通知文件被删除,这是我的代码片段
public void onEvent(int event, String path) {
if (path == null) {
return;
}
//File was deleted from the monitored directory
if ((FileObserver.DELETE & event)!=0) {
//Here I want to copy File some where else then I am getting
//'File Not found exception' because file is already
// deleted before reaching this point of code
}
}
请任何人分享您的知识来解决这个难题。这种Recycle Bin
问题在这里和其他网站也被问过很多次stackoverflow
,但还没有合适的解决方案。
有一个应用程序,Google Play
该应用程序的名称Dumpster
是完成任务。
请帮我。
提前致谢。