1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 09:46:22 +00:00

Handle encoded uri path on copyFile

fix #2578
This commit is contained in:
Jinwoo Oh
2018-12-03 14:04:13 +09:00
parent 830ade9596
commit cf35dc5345
2 changed files with 36 additions and 1 deletions

View File

@@ -16,7 +16,7 @@ function copyFile (srcPath, dstPath) {
const dstFolder = path.dirname(dstPath)
if (!fs.existsSync(dstFolder)) fs.mkdirSync(dstFolder)
const input = fs.createReadStream(srcPath)
const input = fs.createReadStream(decodeURI(srcPath))
const output = fs.createWriteStream(dstPath)
output.on('error', reject)