如果我自己运行shutil.move(file,dest)它工作正常,我遇到的问题是当我循环时,循环工作正常而没有shutil.move。
IOError: [Errno 2] No such file or directory: 'test.txt'
path = '/media/usb/Test/'
dest = '/media/usb/Done/'
for file in os.listdir(path):
fullpath = os.path.join(path, file)
f = open( fullpath , 'r')
dataname = f.name
print dataname
shutil.copy(file, dest)
我知道这很简单,我尝试了很多不同的事情,但是我无法理解这一点。
答案 0 :(得分:4)
您提供shutil.copy
文件名(file
),而不是完整路径,因此可以找到该文件。
也许你的意思是:
shutil.copy(fullpath, dest)