Advertisement
xapu

Untitled

Oct 4th, 2017
400
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // some code
  2.  
  3. form
  4.     .on('error', err => {
  5.       console.log(err)
  6.     })
  7.     .on('fileBegin', (name, file) => {
  8.       fs.access(`./public/memeStorage/${dbLength}`, err => {
  9.         if (err) {
  10.           console.log(err)
  11.           fs.mkdirSync(`./public/memeStorage/${dbLength}`)
  12.         }
  13.         file.path = memePath
  14.       })
  15.     })
  16.  
  17. // some more code
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement