How do I copy a file in python? I couldn't find anything under os.
|
|
shutil has many methods you can use. One of which is:
Copy the contents of the file named src to a file named dst. The destination location must be writable; otherwise, an IOError exception will be raised. If dst already exists, it will be replaced. Special files such as character or block devices and pipes cannot be copied with this function. src and dst are path names given as strings. |
|||||||||||||||||||||
|
or
|
||||
|
In case you are stuck with Python 2.3 (as I am) you may notice that there is no shutils. But copying a file is a relatively straightforward operation.
|
|||||||||||
|
|
Use the shutils module. http://docs.python.org/lib/module-shutil.html
Copy the contents of the file named src to a file named dst. The destination location must be writable; otherwise, an IOError exception will be raised. If dst already exists, it will be replaced. Special files such as character or block devices and pipes cannot be copied with this function. src and dst are path names given as strings. Take a look at http://docs.python.org/lib/filesys.html for all the file and directory handling functions available in standard Python modules. |
||||
|
|
|
Here you copy all *.mp4 files from one directory to another
|
|||
|
|
|
Directory and File copy example - From Tim Golden's Python Stuff: http://timgolden.me.uk/python/win32_how_do_i/copy-a-file.html
|
|||
|
|
|
It's works fine for me
You should test the status "st" before doing the rest. (man cp for more options). |
|||||||
|
|
