我正在使用FileObserver
来获取已删除文件的通知。我想在删除之前保存所有已删除的文件从SD卡(如Dumpster应用程序)。但是我在文件删除之后得到了通知,但我想在删除之前,以便我可以将此文件保存在其他可以在以后恢复的地方,就像dumpster android app( Dumpster )。这该怎么做?我正在使用此代码向我提供有关已删除文件的信息。
public void onEvent(int event, String path) {
if (path == null) {
return;
}
//a file was deleted from the monitored directory
if ((FileObserver.DELETE & event)!=0) {
//If Here I want to copy File some where else then I am getting 'File Not found exception'
}
}