|
@@ -234,7 +234,8 @@ public class TCallRecordController extends BaseController
|
|
|
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
|
|
|
try (ZipOutputStream zipOutputStream = new ZipOutputStream(byteArrayOutputStream)) {
|
|
|
for (String fileName : fileNames) {
|
|
|
- File file = new File(FILE_STORAGE_LOCATION + fileName);
|
|
|
+// File file = new File(FILE_STORAGE_LOCATION + fileName);
|
|
|
+ File file = new File(fileName);
|
|
|
if (!file.exists()) {
|
|
|
logger.error("File not found: " + fileName);
|
|
|
continue;//查询其他的
|