Published
- 1 min read
multer rename file
The solution for this is noted below
multer rename file
Solution
const multer = require('multer')
const storage = multer.diskStorage({
destination: function (req, file, cb) {
cb(null, 'uploads/')
},
filename: function (req, file, cb) {
cb(null, file.filename + '-' + Date.now())
}
})
const upload = multer({ storage: storage })
// For Single uploads
router.route('/upload').post(upload.single('file'), (req, res, next) => {
return res.json(req.file)
})
// For multiple file uploads (using FormData)
router.route('/upload').post(upload.array('file[]'), (req, res, next) => {
return res.json(req.file)
})
Try other methods by searching on the site. That is if this doesn’t work