When an uploaded file is received by the Django server, its name can be read using UploadedFile.name
If filename in the multipart-data content contains a path like: '/a/b/c', UploadedFile.name seems to contain '/c' . How can I retrieve the full path and not just the file name.
Thanks.
Laurent Luce