cpython/Lib/shutil.py

85 lines
2.0 KiB
Python
Raw Normal View History

# Module 'shutil' -- utility functions usable in a shell-like program.
# XXX The copy*() functions here don't copy the data fork on Mac.
# XXX Consider this example code rather than flexible tools.
1990-10-13 16:23:40 -03:00
1992-03-31 14:55:40 -04:00
import os
1990-10-13 16:23:40 -03:00
MODEBITS = 010000 # Lower 12 mode bits
# Change this to 01000 (9 mode bits) to avoid copying setuid etc.
# Copy data from src to dst
#
def copyfile(src, dst):
1997-04-29 11:06:46 -03:00
fsrc = None
fdst = None
try:
fsrc = open(src, 'rb')
fdst = open(dst, 'wb')
while 1:
buf = fsrc.read(16*1024)
if not buf:
break
fdst.write(buf)
finally:
if fdst:
fdst.close()
if fsrc:
fsrc.close()
1990-10-13 16:23:40 -03:00
# Copy mode bits from src to dst
#
def copymode(src, dst):
1997-04-29 11:06:46 -03:00
st = os.stat(src)
mode = divmod(st[0], MODEBITS)[1]
os.chmod(dst, mode)
1990-10-13 16:23:40 -03:00
# Copy all stat info (mode bits, atime and mtime) from src to dst
#
def copystat(src, dst):
1997-04-29 11:06:46 -03:00
st = os.stat(src)
mode = divmod(st[0], MODEBITS)[1]
os.chmod(dst, mode)
os.utime(dst, st[7:9])
1990-10-13 16:23:40 -03:00
# Copy data and mode bits ("cp src dst").
# Support directory as target.
1990-10-13 16:23:40 -03:00
#
def copy(src, dst):
1997-04-29 11:06:46 -03:00
if os.path.isdir(dst):
dst = os.path.join(dst, os.path.basename(src))
copyfile(src, dst)
copymode(src, dst)
1990-10-13 16:23:40 -03:00
# Copy data and all stat info ("cp -p src dst").
# Support directory as target.
1990-10-13 16:23:40 -03:00
#
def copy2(src, dst):
1997-04-29 11:06:46 -03:00
if os.path.isdir(dst):
dst = os.path.join(dst, os.path.basename(src))
copyfile(src, dst)
copystat(src, dst)
1990-10-13 16:23:40 -03:00
# Recursively copy a directory tree.
# The destination must not already exist.
#
def copytree(src, dst):
1997-04-29 11:06:46 -03:00
names = os.listdir(src)
os.mkdir(dst, 0777)
for name in names:
srcname = os.path.join(src, name)
dstname = os.path.join(dst, name)
#print 'Copying', srcname, 'to', dstname
try:
#if os.path.islink(srcname):
# linkto = os.readlink(srcname)
# os.symlink(linkto, dstname)
#elif os.path.isdir(srcname):
if os.path.isdir(srcname):
copytree(srcname, dstname)
else:
copy2(srcname, dstname)
# XXX What about devices, sockets etc.?
except os.error, why:
print 'Could not copy', srcname, 'to', dstname,
print '(', why[1], ')'