diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-10-07 13:23:24 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-10-07 13:23:24 (GMT) |
commit | e9ce0b0fea16453cb8d75ecac02669998cc7ff36 (patch) | |
tree | 2c2949cb0236b4971ebded38bc5bb5a5d8dd9d43 /Lib/shutil.py | |
parent | 114619e1ed7537d4e741516340eea40e19dcea2c (diff) | |
download | cpython-e9ce0b0fea16453cb8d75ecac02669998cc7ff36.zip cpython-e9ce0b0fea16453cb8d75ecac02669998cc7ff36.tar.gz cpython-e9ce0b0fea16453cb8d75ecac02669998cc7ff36.tar.bz2 |
Patch #448038: Add move(). Report errors from copytree as in shutil.Error.
Diffstat (limited to 'Lib/shutil.py')
-rw-r--r-- | Lib/shutil.py | 32 |
1 files changed, 30 insertions, 2 deletions
diff --git a/Lib/shutil.py b/Lib/shutil.py index 0e60870..e94e7d9 100644 --- a/Lib/shutil.py +++ b/Lib/shutil.py @@ -7,9 +7,13 @@ XXX The functions here don't copy the resource fork or other metadata on Mac. import os import sys import stat +import exceptions __all__ = ["copyfileobj","copyfile","copymode","copystat","copy","copy2", - "copytree","rmtree"] + "copytree","rmtree","Error"] + +class Error(exceptions.EnvironmentError): + pass def copyfileobj(fsrc, fdst, length=16*1024): """copy data from file-like object fsrc to file-like object fdst""" @@ -95,6 +99,7 @@ def copytree(src, dst, symlinks=0): """ names = os.listdir(src) os.mkdir(dst) + errors = [] for name in names: srcname = os.path.join(src, name) dstname = os.path.join(dst, name) @@ -108,7 +113,9 @@ def copytree(src, dst, symlinks=0): copy2(srcname, dstname) # XXX What about devices, sockets etc.? except (IOError, os.error), why: - print "Can't copy %s to %s: %s" % (`srcname`, `dstname`, str(why)) + errors.append((srcname, dstname, why)) + if errors: + raise Error, errors def rmtree(path, ignore_errors=0, onerror=None): """Recursively delete a directory tree. @@ -141,3 +148,24 @@ def _build_cmdtuple(path, cmdtuples): else: cmdtuples.append((os.remove, real_f)) cmdtuples.append((os.rmdir, path)) + + +def move(src, dst): + """Recursively move a file or directory to another location. + + If the destination is on our current filesystem, then simply use + rename. Otherwise, copy src to the dst and then remove src. + A lot more could be done here... A look at a mv.c shows a lot of + the issues this implementation glosses over. + + """ + + try: + os.rename(src, dst) + except OSError: + if os.path.isdir(src): + copytree(src, dst, symlinks=1) + rmtree(src) + else: + copy2(src,dst) + os.unlink(src) |