Multer create new folder with data
I use multer . Question 1 When I put the following snippet in the app.js app.use(multer({ dest: './uploads' } ).single('file')); it creates a new folder under the root folder, my question is about this new folder's lifeCycle, When it'll be deleted? How much the size of the folder could be after 100 call? Question 2 If I don't want to limit the file size, what I should put in the configuration? app.use(multer({ dest: './public/profile/img/', limits: { fieldNameSize: 50, files: 1, fields: 5, fileSize: 1024 * 1024 }, Update My app is built like app.js file contain app.use(multer({ dest: '.