The user uploads a file and I convert that file to a new format. How do I insert the created file into the DB?
When I do the obvious field.file = newfile, it tries to upload it. So, I guess the question is, how do I add a file to the database without having it try and write the file to the filesystem?
--Edit-- I don't want to store the file in the DB. I just want to set the path that the FileField points to without having the FileField try to write the file to disk (because it's already on disk).