浏览代码

导览视频转换下载功能

dengsixing 2 年之前
父节点
当前提交
b95d784aa0

+ 4 - 0
4dkankan-center-scene/src/main/java/com/fdkankan/scene/service/impl/DownloadTourVideoServiceImpl.java

@@ -97,6 +97,10 @@ public class DownloadTourVideoServiceImpl extends ServiceImpl<IDownloadTourVideo
         String destPath = null;
         try {
             String destFileName = UUID.randomUUID().toString() + ".mp4";
+            File destFile = new File(destFileName);
+            if(!destFile.getParentFile().exists()){
+                destFile.getParentFile().mkdir();
+            }
             destPath = ConstantFilePath.SCENE_V4_PATH + downloadTourVideo.getNum() + "tour/" + destFileName;
             String srcPath = downloadTourVideo.getLocalPath();
             CreateObjUtil.formatMp4(srcPath, destPath);