1import shutil
2
3original = r'original path where the file is currently stored\file name.file extension'
4target = r'target path where the file will be copied\file name.file extension'
5
6shutil.copyfile(original, target)
7
1# Copy a file in Python using copy() method
2import shutil
3shutil.copy( '/src/test/source.txt' , '/dest/destination.txt' )
1━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
2Function preserves supports accepts copies other
3 permissions directory dest. file obj metadata
4――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――
5shutil.copy ☐ ☐
6shutil.copy2 ☐
7shutil.copyfile ☐ ☐ ☐ ☐
8shutil.copyfileobj ☐ ☐ ☐