mirror of
https://github.com/jeequan/jeepay
synced 2024-11-17 23:08:03 +08:00
OSS证书下载到本地: 当文件夹不存在时, 需要创建。 避免下载提示文件夹不存在导致业务异常。
This commit is contained in:
parent
b31372ef3d
commit
0a9ccc53b4
@ -49,6 +49,11 @@ public class ChannelCertConfigKitBean {
|
||||
return certFile;
|
||||
}
|
||||
|
||||
// 当文件夹不存在时, 需要创建。
|
||||
if(!certFile.getParentFile().exists()){
|
||||
certFile.getParentFile().mkdirs();
|
||||
}
|
||||
|
||||
// 请求下载并返回 新File
|
||||
return downloadFile(certFilePath, certFile);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user