Answers for "shutil move file overwrite"

1

shutil move overwrite

# If you specify the full path to the destination (not just the directory)
# then shutil.move will overwrite any existing file:
shutil.move(os.path.join(src, filename), os.path.join(dst, filename))
Posted by: Guest on May-17-2021

Python Answers by Framework

Browse Popular Code Answers by Language