1# Copy a file in Python using copy() method
2import shutil
3shutil.copy( '/src/test/source.txt' , '/dest/destination.txt' )
1# Copy a file in Python using copyfile() method
2import shutil
3shutil.copyfile( 'source.txt' , 'destination.txt' )
1# Copy a file in Python using copy2() method
2import shutil
3shutil.copy2( '/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 ☐ ☐ ☐