richardgirges / express-fileupload

Simple express file upload middleware that wraps around busboy
MIT License
1.52k stars 261 forks source link

How to remove image #282

Closed TOcvfan closed 3 years ago

TOcvfan commented 3 years ago

How do I remove an image from the server?

RomanBurunkov commented 3 years ago

Please elaborate your request.

RomanBurunkov commented 3 years ago

Closing. Looks it is not related to this package.

TOcvfan commented 3 years ago

Express-file upload allows you to upload files, but how do I delete them again so that they don't take up space, I have seen that there is a a temperay file option, but it doesn't say how long it will be there or how to set the time..

RomanBurunkov commented 3 years ago

There is no timeouts or timers for temporary files. Mean it's up to your app logic.

Module just uploads files. And you decide what to do with them.

But file object has a mv method, in case of temporary files it moves file to the destination directory.

Hope it's clear now