gpt4 book ai didi

javascript - 在循环内运行 Node.js 的 fs.rename() 时出错

转载 作者:搜寻专家 更新时间:2023-11-01 00:28:40 24 4
gpt4 key购买 nike

我正在开发一个应用程序,它必须组织一些上传的文件,我用他们的请求 ID 将它们分开在文件夹中(我正在使用 express-request-id 来获取这个 ID)。

问题是,每当我有多个文件时,“移动”过程就会失败,而且我似乎无法修复它。

let request_folder = path.resolve(tmp_folder + "/" + req.id);

/* Checking if the folder exists */
fs.access(request_folder, fs.constants.F_OK, function(error) {
if(error) { // it doesn't
/* Trying to create it */
fs.mkdir(request_folder, function(error) {
if(error) {
console.log("Error: Couldn't create the directory.");
console.log(error);
}
});
}
});

/* Moving uploaded files to their respective request folder */
req.files.forEach(function(file) {
let new_file_path = path.resolve(request_folder + "/" + file.filename);
fs.rename(file.path, new_file_path, function(error) {
if(error) {
console.log("Error: Couldn't move " + file.filename + ".");
console.log(error);
}
});
});

我百分百确定文件夹和文件都存在,但我在尝试一次移动两个文件时得到:

Error: Couldn't move Desert.jpg.
{ Error: ENOENT: no such file or directory, rename 'C:\Users\telmo.silva\csc-links\public\tmp\Desert.jpg' -> 'C:\Users\telmo.silva\csc-links\public\tmp\d2abf375-d09f-440c-a5ba-adf4f5725a73
\Desert.jpg'
errno: -4058,
code: 'ENOENT',
syscall: 'rename',
path: 'C:\\Users\\telmo.silva\\csc-links\\public\\tmp\\Desert.jpg',
dest: 'C:\\Users\\telmo.silva\\csc-links\\public\\tmp\\d2abf375-d09f-440c-a5ba-adf4f5725a73\\Desert.jpg' }
Error: Couldn't move Chrysanthemum.jpg.
{ Error: ENOENT: no such file or directory, rename 'C:\Users\telmo.silva\csc-links\public\tmp\Chrysanthemum.jpg' -> 'C:\Users\telmo.silva\csc-links\public\tmp\d2abf375-d09f-440c-a5ba-adf4f
5725a73\Chrysanthemum.jpg'
errno: -4058,
code: 'ENOENT',
syscall: 'rename',
path: 'C:\\Users\\telmo.silva\\csc-links\\public\\tmp\\Chrysanthemum.jpg',
dest: 'C:\\Users\\telmo.silva\\csc-links\\public\\tmp\\d2abf375-d09f-440c-a5ba-adf4f5725a73\\Chrysanthemum.jpg' }

有谁知道我做错了什么?谢谢!

最佳答案

您使用的 fs 操作是异步的,这意味着它们可以按任何顺序发生。

您的循环将要求 Node 创建一个文件夹并基本上同时移动文件。换句话说,它将运行一个同步循环,同时调度所有 fs 操作。这意味着您无法保证实际首先运行的是什么。

尝试在移动所有文件之前创建文件夹:

fs.access(request_folder, fs.constants.F_OK, function(error) {
if(error) {
return fs.mkdir(request_folder, function(error) {
if(error) {
return;
}
moveFiles();
});
}
moveFiles();
});

function moveFiles() {
req.files.forEach(function(file) {
// ...
});
}

使用 promises 可能会让这更干净一点:

const access = util.promisify(fs.access);
const mkdir = util.promisify(fs.mkdir);
const rename = util.promisify(fs.rename);

access(request_folder, fs.constants.F_OK)
.then(moveFiles, makeDirAndMoveFiles)
.catch(console.error);

function moveFiles() {
return Promise.all(
req.files.map(file => {
const new_file_path = path.resolve(request_folder + "/" + file.filename);
return rename(file.path, new_file_path);
})
)
}

function makeDirAndMoveFiles() {
return mkdir(request_folder).then(moveFiles);
}

关于javascript - 在循环内运行 Node.js 的 fs.rename() 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47356783/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com