Choose the filename of an uploaded file with Django

后端 未结 2 1038
南笙
南笙 2021-01-12 02:41

I\'m uploading images (represented by a FileField) and I need to rename those files when they are uploaded.

I want them to be formated like that:

\"%d-

2条回答
  •  日久生厌
    2021-01-12 03:40

    You don't need to write your own FileStorage class or anything that complicated.

    The 'upload_to' parameter on File/ImageFields can take a function that returns the path/file to use.

    How to do this has already been answered here

提交回复
热议问题