|
@@ -99,8 +99,9 @@ public class DictFileController extends BaseController{
|
|
|
return ResultData.ok(commonUpload.getFileUrl());
|
|
|
}
|
|
|
if("obj".equals(commonUpload.getFileFormat()) || "osgb".equals(commonUpload.getFileFormat()) || "b3dm".equals(commonUpload.getFileFormat())){
|
|
|
- sceneObjPath = new File(sceneObjPath).getParentFile().getPath();
|
|
|
- foName = new File(sceneObjPath).getParentFile().getName();
|
|
|
+ File parentFile = new File(sceneObjPath).getParentFile();
|
|
|
+ sceneObjPath = parentFile.getPath();
|
|
|
+ foName = parentFile.getName();
|
|
|
}
|
|
|
|
|
|
String filePath = String.format(CacheUtil.basePath+"/" +OssPath.MANAGE_FILE_DOWN_PATH ,dictFileId) ;
|