up vote 67 down vote favorite
16
share [g+] share [fb]

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

link|improve this question

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
1  
None of the solutions presented here is able to do a smart copy, like copying the file only if it was changed. – sorin Sep 21 '09 at 19:41
6  
Seems like a strange omission from the os module. – I. J. Kennedy Oct 3 '10 at 17:24
feedback

9 Answers

up vote 106 down vote accepted

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|improve this answer
3  
What is the difference between copy and copyfile? – Matt Sep 23 '08 at 19:47
11  
in copy(src, dst) the dst can be a directory. – Owen Sep 23 '08 at 19:51
1  
Note that not all metadata will be copied, depending on your platform. – Kevin Horn Oct 19 '09 at 20:50
1  
is this solution cross platform? – superjoe30 Apr 29 '10 at 9:40
yes, it is...... – Swati May 8 '10 at 0:55
feedback
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|improve this answer
5  
You should explain what benefits copy2 has if you want your answer to be more helpful. – tzot Sep 23 '08 at 21:30
Although the documentation warns that copy2 does not preserve all metadata, this is just what I needed as I wanted the items you list. Thanks! – sage Jun 23 '11 at 17:33
feedback

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|improve this answer
7  
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 '09 at 15:20
Copying a file's contents is a straightforward operation. Copying the file with its metadata is anything but straightforward, even more so if you want to be cross-platform. – LaC Jan 16 at 18:01
True. Looking at the shutil docs, the copyfile function also won't copy metadata. – pi. Jan 17 at 15:08
feedback

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

link|improve this answer
feedback

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|improve this answer
feedback

shutil may have what your looking for.

link|improve this answer
feedback

Directory and File copy example - From Tim Golden's Python Stuff:

http://timgolden.me.uk/python/win32_how_do_i/copy-a-file.html

import os
import shutil
import tempfile

filename1 = tempfile.mktemp (".txt")
open (filename1, "w").close ()
filename2 = filename1 + ".copy"
print filename1, "=>", filename2

shutil.copy (filename1, filename2)

if os.path.isfile (filename2): print "Success"

dirname1 = tempfile.mktemp (".dir")
os.mkdir (dirname1)
dirname2 = dirname1 + ".copy"
print dirname1, "=>", dirname2

shutil.copytree (dirname1, dirname2)

if os.path.isdir (dirname2): print "Success"
link|improve this answer
feedback

Here you copy all *.mp4 files from one directory to another

    import shutil
    import fnmatch
    import os

    Dir1 = "/Volumes/VoigtKampff/Temp/TEST/" #File Origin Directory - note this is for OSX
    Dir2 = "/Volumes/VoigtKampff/Temp/TEST/Destination/" #File Destination Directory - note this is for OSX 
    dirList=os.listdir(Dir1)

    for file1 in dirList: #file the files
        if fnmatch.fnmatch(file1, '*.mp4'): #make sure they match the wildcard
            print(file1) #echo the list of files to check 
            shutil.move(Dir1+file1, Dir2+'/'+file1) # move the files from origin to destination
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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