Advertisement
shopnilSS

Download Api

Apr 28th, 2021
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const downloadController = (req, res) => {
  2.     const file = `E:/Topper/MERN/Class/mern_class_code/libraryManagement/images/1619289229460-2.jpg`;
  3.     res.download(file, "image", (err)=> {
  4.         if(err){
  5.             console.log(err);
  6.         }else{
  7.             console.log("Download successfully");
  8.         }
  9.     }); // Set disposition and send it.
  10. }
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement