fix: http download filename special character

This commit is contained in:
linyuchen 2024-05-05 20:05:52 +08:00
parent 8449b590df
commit 67b0a1ebf9

View File

@ -193,6 +193,7 @@ export async function uri2local(uri: string, fileName: string | null = null): Pr
// res.ext = pathInfo.ext
}
}
fileName = fileName.replace(/[/\\:*?"<>|]/g, '_');
res.fileName = fileName;
filePath = path.join(getTempDir(), uuidv4() + fileName);
fs.writeFileSync(filePath, buffer);