使用node.js中fs模块的copyFileSync方法复制文件报错“operation not permitted, copyfile ‘G:\test.txt‘ -> ‘G:\Trash‘“

异常

Error: EPERM: operation not permitted, copyfile 'G:\test.txt' -> 'G:\Trash'
?[90m    at Object.copyFileSync (node:fs:2800:3)?[39m
    at Object.<anonymous> (D:\NodeJs\node-demo\trash.js:19:29)
?[90m    at Module._compile (node:internal/modules/cjs/loader:1097:14)?[39m
?[90m    at Object.Module._extensions..js (node:internal/modules/cjs/loader:1149:10)?[39m
?[90m    at Module.load (node:internal/modules/cjs/loader:975:32)?[39m
?[90m    at Function.Module._load (node:internal/modules/cjs/loader:822:12)?[39m
?[90m    at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:81:12)?[39m
?[90m    at node:internal/main/run_main_module:17:47?[39m {
  errno: ?[33m-4048?[39m,
  syscall: ?[32m'copyfile'?[39m,
  code: ?[32m'EPERM'?[39m,
  path: ?[32m'G:\\test.txt'?[39m,
  dest: ?[32m'G:\\Trash'?[39m
}

Node.js v17.1.0

错误代码

var fs = require('fs');
fs.copyFileSync('G:\test.txt', 'G:\Trash');

原因

我以为这个方法复制文件是复制到指定目录下,所以第二个参数写了一个目录,导致报错。在这里插入图片描述

解决

第二个参数改为要复制的文件路径。

正确代码

var fs = require('fs');
fs.copyFileSync('G:\test.txt', 'G:\Trash\test.txt');
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值