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