Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Django File Upload and Rename

User is uploading a .c file of a particular question. I want the file to be renamed as 'userid_questionid.c'

My models.py is :

from django.db import models

class users(models.Model):
    username = models.CharField(max_length=20)
    password = models.CharField(max_length=20)
    score=models.IntegerField(max_length=3)
    def __unicode__(self):
        return self.username

class questions(models.Model):
    question = models.TextField(max_length=2000)
    qid=models.IntegerField(max_length=2)
    def __unicode__(self):
       return self.qid

def content_file_name(instance, filename):
    return '/'.join(['uploads', instance.questid.qid, filename])


class submission(models.Model):
    user = models.ForeignKey(users)
    questid = models.ForeignKey(questions)
    file = models.FileField(upload_to=content_file_name)

I tried this. But it just creates the folder of user and saves file in it. Please help. Thank You. I need the file to be renamed.

like image 624
cold_coder Avatar asked Sep 03 '14 20:09

cold_coder


1 Answers

You just need to change your content_file_name function. The function below will create paths like so: uploads/42_100.c, where 42 is the user's id, and 100 is the question's id.

import os
def content_file_name(instance, filename):
    ext = filename.split('.')[-1]
    filename = "%s_%s.%s" % (instance.user.id, instance.questid.id, ext)
    return os.path.join('uploads', filename)
like image 93
sgarza62 Avatar answered Nov 13 '22 07:11

sgarza62