node.js fs.copyFile()拷贝文件到文件夹错误

2023-11-12  本文已影响0人  乐宝呗

开发时遇到一个bug;

 fs.copyFile(F:\\xxx\\resources\\fileViewTemp\\N320501030400001100113025\\附件.docx, 'F:\\, (error) => {
    if (error) {
      console.log('copy文件失败', error)
      return
    }
  })

报错信息

  1. [Error: ENOENT: no such file or directory, copyfile 'F:\xxx\resources\fileViewTemp\N320501030400001100113025\附件.docx' -> 'F:'] {
    errno: -4058,
    code: 'ENOENT',
    syscall: 'copyfile',
    path: 'F:\xxxl\resources\fileViewTemp\N320501030400001100113025\附件.docx',
    dest: 'F:\'
    }
  2. [Error: ENOENT: operation not permitted, copyfile 'F:\xxx\resources\fileViewTemp\N320501030400001100113025\附件.docx' -> 'F:'

这个错误信息。一开始报 没有此文件 后来又报 没权限,我的天 他是要干啥,一头雾水。

解决办法

fs.copyFile(F:\xxx\resources\fileViewTemp\N320501030400001100113025\附件.docx, 'F:\附件.docx,, (error) => {
if (error) {
console.log('copy文件失败', error)
return
}
})
copyfile文件时,把目标路径也写到文件名,不要只写到文件夹名。这样就可以完美解决这个报错问题啦。。。真是汗颜。。。

上一篇下一篇

猜你喜欢

热点阅读