美文网首页
node.js fs.copyFile()拷贝文件到文件夹错误

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

作者: 乐宝呗 | 来源:发表于2023-11-12 16:29 被阅读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文件时,把目标路径也写到文件名,不要只写到文件夹名。这样就可以完美解决这个报错问题啦。。。真是汗颜。。。

    相关文章

      网友评论

          本文标题:node.js fs.copyFile()拷贝文件到文件夹错误

          本文链接:https://www.haomeiwen.com/subject/zaqrwdtx.html