gpt4 book ai didi

python - 文件上传:Trim-last-few-Characters-Save Extension

转载 作者:行者123 更新时间:2023-11-30 23:40:55 25 4
gpt4 key购买 nike

我的模型允许上传的“文件名”最多为 255 个字符。如果超过这个数就会崩溃。我需要的是“类似省略号的东西,即在大约 225 个字符后添加三个点 (...),然后‘显示文件的扩展名’”。

这是我的模型文件中的一小段代码,我认为这是影响点:

class Attachment(models.Model):
file = models.FileField(upload_to=get_upload_path, max_length=256,
storage=AttachmentsStorage() if AttachmentsStorage else None)

任何帮助将不胜感激。谢谢:)

最佳答案

使用os.path.splitext()拆分扩展名:

if len(path) > 255:
path, ext = os.path.split(path)
path = path[:252-len(ext)] + '...' + ext

关于python - 文件上传:Trim-last-few-Characters-Save Extension,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12350124/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com