lizhanwei
2021-04-27 f3af97387d8d25d6bebd8b4383dee1c22fc947ac
app/src/main/java/safeluck/drive/evaluation/util/FileUtil.java
@@ -400,4 +400,12 @@
            e.printStackTrace();
        }
    }
    public static boolean isFileExist(String path) {
        File file = new File(path);
        if (file.exists()){
            return true;
        }
        return false;
    }
}