Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|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
26  
Seems like a strange omission from the os module. – I. J. Kennedy Oct 3 '10 at 17:24

10 Answers

up vote 257 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.

share|improve this answer
9  
What is the difference between copy and copyfile? – Matt Sep 23 '08 at 19:47
33  
in copy(src, dst) the dst can be a directory. – Owen Sep 23 '08 at 19:51
5  
Note that not all metadata will be copied, depending on your platform. – Kevin Horn Oct 19 '09 at 20:50
4  
is this solution cross platform? – superjoe30 Apr 29 '10 at 9:40
3  
yes, it is...... – Swati May 8 '10 at 0:55
show 1 more comment
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.

share|improve this answer
9  
You should explain what benefits copy2 has if you want your answer to be more helpful. – tzot Sep 23 '08 at 21:30
1  
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

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()
share|improve this answer
12  
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
1  
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 '12 at 18:01
True. Looking at the shutil docs, the copyfile function also won't copy metadata. – pi. Jan 17 '12 at 15:08

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.

share|improve this answer

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

share|improve this answer

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
share|improve this answer
This code is moving files, not copying. – spaceknarf Apr 18 at 7:36

shutil may have what your looking for.

share|improve this answer

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"
share|improve this answer

It's works fine for me

import commands
out_cmd = commands.getstatusoutput
def copy(src, dst, opts):
    st, out = out_cmd("cp %s %s %s" % (opts, src, dst,))

You should test the status "st" before doing the rest. (man cp for more options).

share|improve this answer
not cross platform :( – benzaita Jan 15 at 12:39
It's that true ;) But so much useful to use Linux system commands. – said omar Jan 23 at 11:48
This breaks when there are spaces in the filename. – spaceknarf Apr 18 at 7:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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