|
@@ -247,10 +247,10 @@ public class TrackSequenceServiceImpl extends BaseServiceImpl<TrackSequenceMappe
|
|
Path inputPath = path.resolveSibling(fileName_without_suffix + BizConstant.UNZIP_SUFFIX);
|
|
Path inputPath = path.resolveSibling(fileName_without_suffix + BizConstant.UNZIP_SUFFIX);
|
|
Path outputPath = path.resolveSibling(fileName_without_suffix + BizConstant.TRACK_SEQUENCE_SUFFIX);
|
|
Path outputPath = path.resolveSibling(fileName_without_suffix + BizConstant.TRACK_SEQUENCE_SUFFIX);
|
|
|
|
|
|
- makeDir(inputPath.toString());
|
|
|
|
|
|
+// makeDir(inputPath.toString());
|
|
makeDir(outputPath.toString());
|
|
makeDir(outputPath.toString());
|
|
|
|
|
|
- File file = new File(resourcePath);
|
|
|
|
|
|
+ File file = new File(inputPath.toString());
|
|
if (!file.exists()) {
|
|
if (!file.exists()) {
|
|
ZipUtils.unzip(resourcePath, inputPath.toString());
|
|
ZipUtils.unzip(resourcePath, inputPath.toString());
|
|
}
|
|
}
|