feat: 添加合同全量同步任务和合格供方名录路径生成功能
refactor: 重构查询服务使用ParamConstant替换ServiceConstant style: 清理无用代码和注释 fix: 修复CompanyCustomerEvaluationFormFileService查询方法 docs: 更新CloudYuVo和CompanyBankAccountVo字段注释
This commit is contained in:
@@ -590,14 +590,18 @@ public class SmbFileService implements DisposableBean {
|
||||
public void mkdir(java.io.File path) throws IOException {
|
||||
Objects.requireNonNull(path, "Path cannot be null");
|
||||
var smbPath = SmbPath.parse(path.getAbsolutePath());
|
||||
mkdir(smbPath);
|
||||
}
|
||||
|
||||
executeSmbOperation(smbPath, (share, smbFilePath) -> {
|
||||
if (!share.folderExists(smbFilePath)) {
|
||||
share.mkdir(smbFilePath);
|
||||
log.debug("Created directory: {}", smbFilePath);
|
||||
public void mkdir(SmbPath smbPath) throws IOException {
|
||||
executeSmbOperation(smbPath, (share, path) -> {
|
||||
if (!share.folderExists(path)) {
|
||||
share.mkdir(path);
|
||||
log.debug("Created directory: {}", path);
|
||||
}
|
||||
return null;
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user