我正在尝试使用 NodeJS/ExpressJS 将上传的文件从目录/tmp移动:home
fs.rename('/tmp/xxxxx', '/home/user/xxxxx', function(err){
if (err) res.json(err);
console.log('done renaming');
});
但它不起作用,也没有遇到错误。但是,当新路径也在 中时/tmp,这将起作用。
我使用的是 Ubuntu,home在不同的分区中。有什么修复吗?
谢谢