Для загрузки файлов используется
multer
.
const storage = multer.diskStorage({
destination: 'uploads',
filename: function (req, file, cb) {
cb(null, file.fieldname + '-' + Date.now())
}
})
Проблема в том, что
'uploads'
приходится создавать ручками, т.к
multer
говорит
You are responsible for creating the directory when providing destination as a function. When passing a string, multer will make sure that the directory is created for you.
Как сделать чтобы он проверял наличие этой директории и создавал если ее нету?