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)
これは単純なことだとわかっていて、さまざまなことを試してみましたが、これを回避することはできません。