|
@@ -241,7 +241,7 @@ public class SceneUploadServiceImpl extends ServiceImpl<ISceneUploadMapper, Scen
|
|
String descFilePath = ConstantFilePath.SCENE_V4_PATH + "abcd/" + file.getOriginalFilename();
|
|
String descFilePath = ConstantFilePath.SCENE_V4_PATH + "abcd/" + file.getOriginalFilename();
|
|
File file1 = new File(descFilePath);
|
|
File file1 = new File(descFilePath);
|
|
if(!file1.getParentFile().exists()){
|
|
if(!file1.getParentFile().exists()){
|
|
- file1.mkdirs();
|
|
|
|
|
|
+ file1.mkdir();
|
|
}
|
|
}
|
|
CreateObjUtil.formatMp4(oldFile.getPath(), descFilePath);
|
|
CreateObjUtil.formatMp4(oldFile.getPath(), descFilePath);
|
|
|
|
|