如果我自己运行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)
我知道这很简单,我尝试了许多不同的方法,但就是无法理解这一点。