This commit is contained in:
jxxghp
2025-01-06 10:56:30 +08:00
parent e7c580d375
commit aeb65d7cac
+2 -2
View File
@@ -366,8 +366,8 @@ class MediaChain(ChainBase, metaclass=Singleton):
""" """
if not _fileitem or not _content or not _path: if not _fileitem or not _content or not _path:
return return
# 保存文件到临时目录 # 保存文件到临时目录,文件名随机
tmp_file = settings.TEMP_PATH / _path.name tmp_file = settings.TEMP_PATH / f"{_path.name}.{StringUtils.generate_random_str(10)}"
tmp_file.write_bytes(_content) tmp_file.write_bytes(_content)
# 获取文件的父目录 # 获取文件的父目录
try: try: