Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<a href="original_filename.pdf">Download this file</a>

Will save the filename as original_filename.pdf. What if I want the file to be renamed before the download?

I'm hoping for a client-side solution.

share|improve this question

3 Answers

I do not think this is possible easily. You can rename the file after it has been downloaded of course.

share|improve this answer

Apart from renaming it on the server or telling people to right-click and choose "Save As", the only thing I can think of is to create a temporary copy which you offer for download under a different name. A huge effort with nothing really gained.

share|improve this answer
This was my thinking, except for the gain ;) – Intra Apr 5 '12 at 23:22
It's true that it could exist though. I mean, you can have a mailto:x@x.x?subject=Whatever%20I%20Want so why not something like dl:file.pdf?name=Actually_call_it_this.pdf :) – Armatus Apr 5 '12 at 23:30
up vote 0 down vote accepted

Solved in duplicate question.

Content-Disposition: attachment; filename=somecustomname.txt
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.