core.files.File.file
  • References/Python/Django/API/File handling/The File object

file The underlying

2025-01-10 15:47:30
core.files.File.delete()
  • References/Python/Django/API/File handling/The File object

File.delete(save=True) Removes the file from the model instance and deletes the underlying file. If save is True

2025-01-10 15:47:30
core.files.images.ImageFile.width
  • References/Python/Django/API/File handling/The File object

width Width of the image in pixels.

2025-01-10 15:47:30
core.files.images.ImageFile.height
  • References/Python/Django/API/File handling/The File object

height Height of the image in pixels.

2025-01-10 15:47:30
core.files.File.save()
  • References/Python/Django/API/File handling/The File object

File.save(name, content, save=True) Saves a new file with the file name and contents provided. This will not replace the existing

2025-01-10 15:47:30
core.files.File.size
  • References/Python/Django/API/File handling/The File object

size The size of the file in bytes.

2025-01-10 15:47:30
core.files.File.write()
  • References/Python/Django/API/File handling/The File object

write(content) Writes the specified content string to the file. Depending on the storage system behind the scenes, this content

2025-01-10 15:47:30
core.files.File.mode
  • References/Python/Django/API/File handling/The File object

mode The read/write mode for the file.

2025-01-10 15:47:30
core.files.base.ContentFile
  • References/Python/Django/API/File handling/The File object

class ContentFile(File) [source] The ContentFile class inherits from File

2025-01-10 15:47:30
core.files.File.close()
  • References/Python/Django/API/File handling/The File object

close() [source] Close the file. In addition to the listed

2025-01-10 15:47:30