I want to serve many files in a folder and thats possible with app.use('/files', express.static('uploads'));
.
All my files have an uuid as suffix for example: 73694640-44e9-448d-bf2f-29148b59180b_myfile.txt
.
Is there a short way to serve all files in this folder but when downloading them, the filename should be without the suffix/uuid?
Like http://localhost/files/73694640-44e9-448d-bf2f-29148b59180b_myfile.txt
will download myfile.txt
.