Re: Help regarding renaming the uploaded file name in Django.

2008-11-06 Thread Alex Koshelev
Django uploading mechanism allow you to add date-bases values to path. See `upload_to` section in [1] [1]: http://docs.djangoproject.com/en/dev/ref/models/fields/#filefield On Thu, Nov 6, 2008 at 15:45, sadeesh Arumugam <[EMAIL PROTECTED]>wrote: > Hi Friends, > > I need a help from you. How to

Help regarding renaming the uploaded file name in Django.

2008-11-06 Thread sadeesh Arumugam
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 u