isChartPathExist(uploadPath + "/" + localDate + "zip");
private static void isChartPathExist(String chartPath) {
File file = new File(chartPath);
if (!file.exists()) {
file.mkdirs();
}
}
2023-12-23 20:30:33
isChartPathExist(uploadPath + "/" + localDate + "zip");
private static void isChartPathExist(String chartPath) {
File file = new File(chartPath);
if (!file.exists()) {
file.mkdirs();
}
}