gpt4 book ai didi

python - 权限错误: [Errno 13] Permission denied @ PYTHON

转载 作者:太空宇宙 更新时间:2023-11-03 16:05:31 26 4
gpt4 key购买 nike

我正在尝试将文件从一个文件夹复制到另一个文件夹,但收到“PermissionError: [Errno 13] Permission returned”。我在我的主目录中工作,并且我是电脑的管理员。浏览了许多其他以前的帖子..尝试了据我所知的所有选项(编程新手)...需要一些帮助。

import os
import shutil

src = "C:\\Users\\chzia\\Scripts\\test" # the file lab.txt is in this folder that needs to be copied to testcp folder.
dst = "C:\\Users\\chzia\\Scripts\\testcp"

for file in os.listdir(src):
src_file = os.path.join(src, file)
dst_file = os.path.join(dst, file)
#shutil.copymode(src, dst) # i have tried these options too same error
#shutil.copyfile(src, dst) # i have tried these options too same error
shutil.copy(src, dst)

我的目标是创建一个 .exe,将文件从网络位置复制到运行该 .exe 的电脑上的特定文件夹。预先感谢所有的支持和帮助。

最佳答案

也许尝试使用shutil.copyfile代替:

shutil.copyfile(src, dst)

Why would shutil.copy() raise a permission exception when cp doesn't? 上的类似旧主题

关于python - 权限错误: [Errno 13] Permission denied @ PYTHON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39844123/

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