File.save(name, content, save=True)
Saves a new file with the file name and contents provided. This will not replace the existing file, but will create a new file and update the object to point to it. If save
is True
, the model’s save()
method will be called once the file is saved. That is, these two lines:
>>> car.photo.save('myphoto.jpg', content, save=False) >>> car.save()
are equivalent to:
>>> car.photo.save('myphoto.jpg', content, save=True)
Note that the content
argument must be an instance of either File
or of a subclass of File
, such as ContentFile
.
Please login to continue.