共计 472 个字符,预计需要花费 2 分钟才能阅读完成。
在 Java 中可以使用 File 类的 exists() 方法和 isDirectory() 方法来判断文件夹是否存在。
示例代码如下:
import java.io.File;
public class CheckFolderExists {public static void main(String[] args) {String folderPath = "path/to/folder";
File folder = new File(folderPath);
if (folder.exists() && folder.isDirectory()) {System.out.println(" 文件夹存在!");
} else {System.out.println(" 文件夹不存在!");
}
}
}
在上面的示例代码中,首先创建一个 File 对象来表示要判断的文件夹,然后使用 exists() 方法和 isDirectory() 方法来判断文件夹是否存在。如果 exists() 方法返回 true 并且 isDirectory() 方法也返回 true,则表示文件夹存在;否则表示文件夹不存在。
丸趣 TV 网 – 提供最优质的资源集合!
正文完