LukasMarx / angular-file-upload

MIT License
136 stars 88 forks source link

where the file is stored #11

Open ranjithreddy1996 opened 4 years ago

jzha653 commented 4 years ago

Same issue, have you found the solution?

LukasMarx commented 4 years ago

Hi,

you can specify the location of the uploaded files by passing some options to the IncomingForm in upload.js:

  var form = new IncomingForm({
    uploadDir: "./upload",
    keepExtensions: true,
  });

You have to make sure that the directory exists!

I hope that helps, have a nice day!