gpt4 book ai didi

python - Linux Python 上的操作不允许错误

转载 作者:太空宇宙 更新时间:2023-11-04 05:09:09 28 4
gpt4 key购买 nike

我正在使用 Shutil Copy 将文本文件从一个位置复制到另一个位置。但它抛出异常:

Operation not permitted.

但令人惊讶的是,我可以看到该文件已复制到目标文件夹。那为什么会抛出异常呢?我正在使用下面的代码。

import shutil
old_name='/test/test1.txt'
new_name='/test1/test1.txt'
try:
shutil.copy(old_name, new_name)
except IOError as e:
print(e)

最佳答案

您尝试过使用 sudo 吗?如果您使用/sudo rest_of_command 它应该停止给您错误。使用 sudo 可能很危险,因此只有在您有信心并知道自己在做什么时才使用它。

关于python - Linux Python 上的操作不允许错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57764464/

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