Python – OSError: [WinError 17] The system cannot move the file to a different disk drive:

Question:

I’m using

os.rename()

to try to move pdf files between drives. Attempting this I receive the error:

OSError: [WinError 17] The system cannot move the file to a different disk drive

Is anyone aware of a function which contains similar functionality to os.rename and allows for across disk file transfer?

Asked By: Phoenix

||

Answers:

os.rename() change the path of the file but doesn’t move its actual data on the disk.
this is why you can’t move (rename) it from one drive to another.

moving between drives is actually copy it first, and then delete the source file.
you can use shutil.move() method which do it when you trying to transfer files between two drives

import shutil
shutil.move(src, dest)
Answered By: Elisha