You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
542 B
29 lines
542 B
function removeUploadedFiles (uploadedFiles, remove, cb) {
|
|
var length = uploadedFiles.length
|
|
var errors = []
|
|
|
|
if (length === 0) return cb(null, errors)
|
|
|
|
function handleFile (idx) {
|
|
var file = uploadedFiles[idx]
|
|
|
|
remove(file, function (err) {
|
|
if (err) {
|
|
err.file = file
|
|
err.field = file.fieldname
|
|
errors.push(err)
|
|
}
|
|
|
|
if (idx < length - 1) {
|
|
handleFile(idx + 1)
|
|
} else {
|
|
cb(null, errors)
|
|
}
|
|
})
|
|
}
|
|
|
|
handleFile(0)
|
|
}
|
|
|
|
module.exports = removeUploadedFiles
|