gpt4 book ai didi

python - 使用shutil移动文件时出错

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

我正在尝试创建一个简单的函数,查找以特定字符串开头的文件,然后将它们移动到新目录,但我不断从shutil中收到以下类型的错误“IOError:[Errno 2]没有这样的文件或目录:'18-1.pdf'”,即使该文件存在。

import os
import shutil
def mv_files(current_dir,start):
# start of file name
start = str(start)
# new directory ro move files in to
new_dir = current_dir + "/chap_"+ start
for _file in os.listdir(current_dir):
# if directory does not exist, create it
if not os.path.exists(new_dir):
os.mkdir(new_dir)
# find files beginning with start and move them to new dir
if _file.startswith(start):
shutil.move(_file, new_dir)

我是否错误地使用了shutil?

正确代码:

import os
import shutil
def mv_files(current_dir,start):
# start of file name
start = str(start)
# new directory ro move files in to
new_dir = current_dir + "/chap_" + start
for _file in os.listdir(current_dir):
# if directory does not exist, create it
if not os.path.exists(new_dir):
os.mkdir(new_dir)
# find files beginning with start and move them to new dir
if _file.startswith(start):
shutil.move(current_dir+"/"+_file, new_dir)

最佳答案

您似乎没有提供 shutil.move 的完整路径。尝试:

if _file.startswith(start):
shutil.move(os.path.abspath(_file), new_dir)

如果失败,请尝试打印 _filenew_dir 以及 os.getcwd() 的结果,并将它们添加到您的答案中。

关于python - 使用shutil移动文件时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22230043/

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