28

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?

1

1 Answer 1

60

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)
Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.