hello,

class MyFile(models.Model) :
    content = models.FileField(upload_to = '.')
    type = models.IntegerField(editable = False)

when a file is submitted through a form post i need to check whether
the file format is valid and set the "type" field to indicate the
format.

i can see two ways to do it. one is to add a validator to the
"content" field, that would also set the "type" field. the other is to
overload "save" method and set "type" there. which one is right? if it
is the latter, should "save" throw "ValidationError" just like a
validator if the file format is invalid?

thanks
konstantin


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to