sadeesh Arumugam
unread,Nov 6, 2008, 7:45:27 AM11/6/08Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
Hi Friends,
I need a help from you. How to rename the uploaded file name in django. Example if we upload a file named "a.jpg" at first time, and at next upload it is uploaded as "a_.jpg", and at the third time "a__.jpg", likewise the Underscore after the filename is increasing one time for each upload of the same image. For this i want to make the filename as yyyy-mm-dd-h-m-s (Current timetamp of the system), so that for each upload we will get a different filename of same image.
How to rename the uploaded filename in django...