public static boolean fileIsExists(String strFile){ try { File file=new File(strFile); if (!file.exists()){ return false; } ...
確定! 回上一頁