我正在尝试创建一个简单的函数,找到以某个字符串开头的文件,然后将它们移动到一个新目录,但我不断从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)
答案 0 :(得分:3)
看起来你没有给出shutil.move
的完整路径。尝试:
if _file.startswith(start):
shutil.move(os.path.abspath(_file), new_dir)
如果失败,请尝试打印_file
和new_dir
以及os.getcwd()
的结果并将其添加到您的答案中。