Is it possible to change filename on client's side by appending current date and time to it? Chome appends to files (number) if files are duplicates. I wonder if it could be possible to append current date.
Asked
Active
Viewed 339 times
1
-
1Not with JavaScript, you would need server-side scripting for this. (Or rather, you can do it by manipulating the `download` attribute on `` elements, but [not in all browsers](http://caniuse.com/#feat=download).) – Amadan Aug 25 '15 at 06:33
-
1Addition to @Amadan 's comment: http://stackoverflow.com/questions/10049259/change-name-of-download-in-javascript – Tom Doodler Aug 25 '15 at 06:44