anacronw / multer-s3

multer storage engine for amazon s3
MIT License
660 stars 190 forks source link

Keeping the extension of the uploaded file #51

Closed iamchathu closed 8 years ago

iamchathu commented 8 years ago

How to save uploaded file with extension like .jpg or *.png

Thank you.

LinusU commented 8 years ago

Use the key function to append the file-extension from file.originalname. Be careful though! The client can send any extension that they want, always validate your files...

iamchathu commented 8 years ago

Used path.extname to achieve it. Thank you @LinusU !