vote up 13 vote down star
2

How do I copy a file in python? I couldn't find anything under os.

flag

It depends on what you want to do. Do you need to copy the contents of the file into memory or do you just want to copy the file from one location on the harddrive to another location? – Haabda Sep 23 '08 at 19:24
None of the solutions presented here is able to do a smart copy, like copying the file only if it was changed. – Sorin Sbarnea Sep 21 at 19:41

7 Answers

vote up 35 vote down check

shutil has many methods you can use. One of which is:

copyfile(src, dst)

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.

link|flag
What is the difference between copy and copyfile? – Matt Sep 23 '08 at 19:47
1  
in copy(src, dst) the dst can be a directory. – Owen Sep 23 '08 at 19:51
Note that not all metadata will be copied, depending on your platform. – Kevin Horn Oct 19 at 20:50
vote up 5 vote down

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.

def copyfile(source, dest, buffer_size=1024*1024):
    """
    Copy a file from source to dest. source and dest
    can either be strings or any object with a read or
    write method, like StringIO for example.
    """
    if not hasattr(source, 'read'):
        source = open(source, 'rb')
    if not hasattr(dest, 'write'):
        dest = open(dest, 'wb')

    while 1:
        copy_buffer = source.read(buffer_size)
        if copy_buffer:
            dest.write(copy_buffer)
        else:
            break

    source.close()
    dest.close()
link|flag
I noticed a while ago that the module is called shutil (singular) and not shutils (plural), and indeed it is in Python 2.3. Nevertheless I leave this function here as an example. – pi Mar 31 at 15:20
vote up 10 vote down
import shutil
shutil.copy2('/dir/file.ext', '/new/dir/newname.ext')

or

shutil.copy2('/dir/file.ext', '/new/dir')

copy2 is also often useful, it preserves the original modification and access info (mtime and atime) in the file metadata.

link|flag
You should explain what benefits copy2 has if you want your answer to be more helpful. – ΤΖΩΤΖΙΟΥ Sep 23 '08 at 21:30
vote up 1 vote down

Use the shutils module. http://docs.python.org/lib/module-shutil.html

copyfile(src, dst)

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.

link|flag
vote up 1 vote down

Look at module shutils. It contains function copyfile(src, dst)

link|flag
vote up 0 vote down

http://docs.python.org/lib/module-shutil.html

link|flag
vote up 0 vote down

shutil may have what your looking for.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.