Pergunta

I am using the model with FileField to deal with file uploading. Now the files can be uploaded successfully. However, there is one more small improvement I want to make, which is to create folder for the user with the username.

Here is the code I've tried

class UserFiles(models.Model):
    user = models.OneToOneField(User)
    file = models.FileField(upload_to='files/users/user.username/%Y_%m_%d/')

this would give the folder of 'user.username' instead of 'John'(one example of username)

I have also tried other ways like files/users/%user.username/%Y_%m_%d/ ,but it would not give the folder with the user name. Not sure how the syntax should be or whether this is possible.

Can you give some suggestions on this? Thank you very much for your help and explanation.

Foi útil?

Solução

Instead of a string try passing a function:

def generate_filename(self, filename):
    url = "files/users/%s/%s" % (self.user.username, filename)
    return url

class UserFiles(models.Model):
    user = models.OneToOneField(User)
    file = models.FileField(upload_to=generate_filename)
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top