I have a Django app which, submitting a package, should return values that are inside it.. Submitted the form to a view called "insert":

request.FILES['file']

returns the file objects, but it is of kind < InMemoryUploadedFile>. What i need is a way to get the absolute path of the uploaded file, so that i can feed it to a method that will return the values needed

Anyone know how i can accomplish this?

Thanks

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

Surely the name "InMemory" is a clue that the file exists in memory only, so doesn't have a path?

link|improve this answer
isn't there a way i can access the file although it's in memory? – PirosB3 May 2 '10 at 15:26
I don't understand your question. You have the file object already. – Daniel Roseman May 2 '10 at 16:52
thanks man!! that worked fine – PirosB3 Jul 29 '10 at 17:17
feedback

Your Answer

 
or
required, but never shown

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