Skip to content

Instantly share code, notes, and snippets.

@timilsinabishal
Created May 20, 2017 17:11
Show Gist options
  • Save timilsinabishal/7a3e37aee9561606060bcd8b1bb1953a to your computer and use it in GitHub Desktop.
Save timilsinabishal/7a3e37aee9561606060bcd8b1bb1953a to your computer and use it in GitHub Desktop.
const storage = multer.diskStorage({
destination: function (req, file, cb) {
cb(null, path.join(__dirname, 'public', 'upload'));
},
fileName: function (req, file, cb) {
cb(null, file.fieldName+'-'+Date.now());
}
});
const upload = multer({storage: storage});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment