java url 本地文件是否存在_java判断给定路径或URL下的文件或文件夹是否存在?...
if (file.exists()) { 来判断这是不是一个文件。file.isDirectory() 来判断这是不是一个文件夹。1.File testFile = new File(testFilePath);if(!testFile .exists()) {testFile.mkdirs();System.out.println("测试文件夹不存在");}2.File testFile = n...