Renaming files in Django FileField
Asked Answered
F

6

14

I know that there is a very similar thread here, but I cannot find the solution to my problem.

I need to rename a file which is save in django models.FileField

I tried this

os.rename(old_path, new_path)
mod.direct_file = File(open(new_path))
mod.save()

And this

mod.direct_file.save(new_path, File(open(old_path)))
os.remove(old_path)

And many other ways, but nothing seemed to help. A new file is created in all ways, however, data in filefield does not change at all.

EDIT: SOLVED

os.rename(old_path, new_path)
cursor = connection.cursor()
cursor.execute("UPDATE mods_mod SET direct_file = %s WHERE id = %s", [new_name, mod.id])
transaction.commit_unless_managed()
Friedly answered 10/9, 2012 at 20:27 Comment(0)
G
18

I don't think you need to use raw SQL for this. I think you need to rename the file using the os facility, then set the model's FileField name to the new name. Maybe something like:

os.rename(model.direct_file.path, new_path)
model.direct_file.name = new_name
model.save()
Goatfish answered 13/5, 2013 at 1:57 Comment(1)
This will only work when using FileSystemStorage.Keitel
E
5
 new_name = 'photos_preview/' + str(uuid.uuid1())
 os.rename(photo.image_preview.path, settings.MEDIA_ROOT + new_name)
 photo.image_preview.name = new_name
 photo.save()
Electropositive answered 27/1, 2015 at 15:19 Comment(0)
D
3

The current Django documentation states:

"When you access a FileField on a model, you are given an instance of FieldFile as a proxy for accessing the underlying file." See docs for further reading.

Instead of using the Python File object to open the file, you should use FieldFile.open() to open the file, then manipulate the file's path accordingly. Afterward, save the model object, and the changes to the path should persist.

Doley answered 10/9, 2012 at 20:41 Comment(5)
Open method opens already assigned file. FieldFile has no method to open another file.Friedly
The file is assigned via the FileField, correct? Are you trying to change all of the files in your model, or a single instance of the model?Doley
I'd like to rename the file direct_file = models.FileField(default=None, blank=True, null=True, upload_to="mod_files") uploaded in this field.Friedly
It's still unclear to me whether you're trying to rename the model field 'direct_file', or you're trying to rename the actual file stored on the filesystem. My answer applies when attempting to rename the file stored on the filesystem.Doley
I want to rename the file in filesystem.Friedly
V
2

I came across this issue when I had blobs saved into django with no file extension, and I wanted to correct that. Best used when looping over a filtered queryset.

You cannot change instance.picture.path, and trying to access instance.picture.file.* will give an error because accessing it will try to open the old file. Setting instance.picture.name will still not let you access instance.picture.file.*, even after saving.

You can simply set the ImageField object itself to the location and all will work:

(Tested with django 1.10)

import imghdr
import os

from django.db import models

class MyModel(models.Model):
    picture = models.ImageField()

instance = MyModel.objects.first()
if os.path.exists(instance.picture.path):
    extension = imghdr.what(instance.picture.path)
    os.rename(instance.picture.path, instance.picture.path + '.' + extension)
    instance.picture = instance.picture.name + '.' + extension
    instance.save()
Ventail answered 15/2, 2017 at 10:17 Comment(0)
I
1

You may use the following:

Suppose 'obj' is the django object that you want to rename. Then do this:

obj.file_field_name.name = new_name

obj.save()

Interjoin answered 10/1, 2020 at 4:39 Comment(1)
The file is not moved only the name will be different.Nagel
B
0

It seems changing filename of a binary in FileField is pretty unflexible according to the django docs. It contains the path from Media root. That points out to a name attr that is reflecting the path, not just the filename itself. Docs: This is the way that django model can find the file

Bianchi answered 21/12, 2021 at 7:37 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.