gpt4 book ai didi

python - django应用程序多个硬盘驱动器[Errno 18]无效的跨设备链接

转载 作者:行者123 更新时间:2023-12-01 03:38:06 25 4
gpt4 key购买 nike

我在 Debian 服务器上有一个 Django 应用程序,并且当前磁盘上的当前 site_media 目录已满。所以我想将文件上传到第二个磁盘上。服务器上的路径是/disk :

        obj = form.save(commit=False)
obj.user_id = self.request.user.pk
obj.save()
initial_path = obj.file.path
print(initial_path)
new = settings.MEDIA_ROOT_NEW + obj.file.name
print(new)
os.rename(initial_path,new)
shutil.move(initial_path, new)

在我的settings.py 中我有:

        MEDIA_ROOT = os.path.join(PROJECT_PATH, 'site_media/')
MEDIA_ROOT_NEW = '/disk/site_media/'

我仍然收到错误:django [Errno 18]无效的跨设备链接

有什么想法吗?

最佳答案

os.rename() 可能会失败 across不同的文件系统。

The operation may fail on some Unix flavors if src and dst are on different filesystems.

shut.move() should工作

If the destination is on the current filesystem, then os.rename() is used. Otherwise, src is copied (using shutil.copy2()) to dst and then removed.

但是在 shutil.move(initial_path, new) 之前有一个 os.rename(initial_path,new) 。删除第一个 os.rename() ,它应该可以工作。

关于python - django应用程序多个硬盘驱动器[Errno 18]无效的跨设备链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40088442/

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