2

如果我自己运行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)

我知道这很简单,我尝试了许多不同的方法,但就是无法理解这一点。

4

1 回答 1

4

您提供shutil.copy的是文件名 ( file),而不是完整路径,因此它可以找到该文件。

也许你的意思是:

shutil.copy(fullpath, dest)
于 2012-11-02T10:06:49.110 回答