mirror of
https://github.com/chubin/cheat.sh.git
synced 2024-11-30 10:03:13 +03:00
17 lines
1007 B
Plaintext
17 lines
1007 B
Plaintext
|
[38;5;246m# How do I copy a file in python?[39m
|
|||
|
[38;5;246m# [39m
|
|||
|
[38;5;246m# shutil (http://docs.python.org/2/library/shutil.html) has many methods[39m
|
|||
|
[38;5;246m# you can use. One of which is:[39m
|
|||
|
|
|||
|
[38;5;70;01mfrom[39;00m[38;5;252m [39m[38;5;68;04mshutil[39;00m[38;5;252m [39m[38;5;70;01mimport[39;00m[38;5;252m [39m[38;5;252mcopyfile[39m
|
|||
|
|
|||
|
[38;5;252mcopyfile[39m[38;5;252m([39m[38;5;252msrc[39m[38;5;252m,[39m[38;5;252m [39m[38;5;252mdst[39m[38;5;252m)[39m
|
|||
|
|
|||
|
[38;5;246m# Copy the contents of the file named src to a file named dst. The[39m
|
|||
|
[38;5;246m# destination location must be writable; otherwise, an IOError exception[39m
|
|||
|
[38;5;246m# will be raised. If dst already exists, it will be replaced. Special[39m
|
|||
|
[38;5;246m# files such as character or block devices and pipes cannot be copied[39m
|
|||
|
[38;5;246m# with this function. src and dst are path names given as strings.[39m
|
|||
|
[38;5;246m# [39m
|
|||
|
[38;5;246m# [Swati] [so/q/123198] [cc by-sa 3.0][39m
|