(path: string)
| 319 | } |
| 320 | |
| 321 | private zipFileCheck(path: string) { |
| 322 | const fileInfo = fs.statSync(path); |
| 323 | const MAX_ZIP_GB = globalConfiguration.config.maxZipFileSize; |
| 324 | if (fileInfo.size > 1024 * 1024 * 1024 * MAX_ZIP_GB) |
| 325 | throw new Error($t("TXT_CODE_system_file.unzipLimit", { max: MAX_ZIP_GB })); |
| 326 | } |
| 327 | } |