file download throw error if you have file’s name composed CJK characters
encodeURIComponent
1 2 3 4 |
res.setHeader('Content-disposition', 'attachment; filename=' + encodeURIComponent(filename)); res.setHeader('Content-type', mimetype); var filestream = fs.createReadStream(realPath); filestream.pipe(res); |