在拥有这个的同时:
profile_pic: ImageField = models.ImageField(
_("profile_picture"), upload_to='profile_pic',
blank=True, null=True)
和23M记录我发现profile_pic是“满”(“没有空间留在设备上”),而有300GB的自由。
我想到了将文件拆分到前三个字母为的文件夹,但我如何在django中实现这一点?
参考:
https://askubuntu.com/questions/1419651/mv-fails-with-no-space-left-on-device-when-the-destination-has-31-gb-of-space
https://pylessons.com/django-images
1条答案
按热度按时间tkqqtvp11#
问题是同一目录中的文件数量。您可以像这样更改upload_to选项,每个文件夹只会有一个文件。