My deployment script overwrites the media and source directories which means I have to move the uploads directory out of the media directory, and replace it after the upload has been extracted.

How can I instruct django to upload to /uploads/ instead of /media/?

So far I keep getting django Suspicious Operation errors! :(

I suppose another solution might be a symlink?

Many thanks, Toby.

link

73% accept rate
More importantly, why is your deployment script overwriting uploaded content? – Dominic Rodger Nov 13 '09 at 13:06
It's not overwriting the uploads because I copy the dir out of the media dir first. Im trying to upload to a different directory so I can overwrite media without having to move uploads. – Toby Nov 13 '09 at 13:09
feedback

2 Answers

up vote 19 down vote accepted

Thornomad, I did the following:

upload_storage = FileSystemStorage(location=UPLOAD_ROOT, base_url='/uploads')

image = models.ImageField(upload_to='/images', storage=upload_storage)

UPLOAD_ROOT is defined in my settings.py file: /foo/bar/webfolder/uploads

I found a great example here: http://abing.gotdns.com/posts/2009/django-file-upload-handling-examples/

Hope that helps! Toby.

link
nice job. i just played with django filefields in an application i'm writing for work. i may end up going this route as well. – Brandon H Nov 13 '09 at 14:46
thanks for posting your solution - groovy – thornomad Nov 13 '09 at 15:41
feedback

check this out.

http://docs.djangoproject.com/en/dev/howto/custom-file-storage/

link
There must be a way of doing it without writing custom storage, surely? – Toby Nov 13 '09 at 13:21
Sorry, You are correct it can be done in two lines with FileSystemStorage. Thank you. – Toby Nov 13 '09 at 13:23
@Toby - can you post how you did it in two lines ? – thornomad Nov 13 '09 at 13:26
feedback

Your Answer

 
or
required, but never shown

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