OSS证书下载到本地: 当文件夹不存在时, 需要创建。 避免下载提示文件夹不存在导致业务异常。

This commit is contained in:
terrfly 2022-05-27 10:23:30 +08:00
parent b31372ef3d
commit 0a9ccc53b4

View File

@ -49,6 +49,11 @@ public class ChannelCertConfigKitBean {
return certFile;
}
// 当文件夹不存在时 需要创建
if(!certFile.getParentFile().exists()){
certFile.getParentFile().mkdirs();
}
// 请求下载并返回 新File
return downloadFile(certFilePath, certFile);
}