发布网友 发布时间:2022-04-22 23:37
共1个回答
热心网友 时间:2022-07-14 05:56
public boolean fileIsExists(){ try{ File f=new File("/storage/sdcard0/Manual/test.pdf"); if(!f.exists()){ return false; } }catch (Exception e) { // TODO: handle exception return false; } return true; }