isChartPathExist(uploadPath + "/" + localDate + "zip");
private static void isChartPathExist(String chartPath) { File file = new File(chartPath); if (!file.exists()) { file.mkdirs(); }}
创建系统路径
原文:https://www.cnblogs.com/Marlo/p/15088706.html