| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  | """distutils.dir_util
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Utility functions for manipulating directories and directory trees."""
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  | import os, sys | 
					
						
							| 
									
										
										
										
											2010-11-20 19:35:27 +00:00
										 |  |  | import errno | 
					
						
							| 
									
										
										
										
											2000-05-27 01:35:27 +00:00
										 |  |  | from distutils.errors import DistutilsFileError, DistutilsInternalError | 
					
						
							| 
									
										
										
										
											2002-06-04 20:14:43 +00:00
										 |  |  | from distutils import log | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # cache for by mkpath() -- in addition to cheapening redundant calls, | 
					
						
							|  |  |  | # eliminates redundant "creating /foo/bar/baz" messages in dry-run mode | 
					
						
							| 
									
										
										
										
											2000-06-17 02:19:30 +00:00
										 |  |  | _path_created = {} | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # I don't use os.makedirs because a) it's new to Python 1.5.2, and | 
					
						
							|  |  |  | # b) it blows up if the directory already exists (I want to silently | 
					
						
							|  |  |  | # succeed in that case). | 
					
						
							| 
									
										
										
										
											2009-05-17 11:25:57 +00:00
										 |  |  | def mkpath(name, mode=0o777, verbose=1, dry_run=0): | 
					
						
							|  |  |  |     """Create a directory and any missing ancestor directories.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     If the directory already exists (or if 'name' is the empty string, which | 
					
						
							|  |  |  |     means the current directory, which of course exists), then do nothing. | 
					
						
							|  |  |  |     Raise DistutilsFileError if unable to create some directory along the way | 
					
						
							|  |  |  |     (eg. some sub-path exists, but is a file rather than a directory). | 
					
						
							|  |  |  |     If 'verbose' is true, print a one-line summary of each mkdir to stdout. | 
					
						
							|  |  |  |     Return the list of directories actually created. | 
					
						
							|  |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-17 02:19:30 +00:00
										 |  |  |     global _path_created | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-27 01:35:27 +00:00
										 |  |  |     # Detect a common bug -- name is None | 
					
						
							| 
									
										
										
										
											2007-10-16 18:12:55 +00:00
										 |  |  |     if not isinstance(name, str): | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |         raise DistutilsInternalError( | 
					
						
							|  |  |  |               "mkpath: 'name' must be a string (got %r)" % (name,)) | 
					
						
							| 
									
										
										
										
											2000-05-27 01:35:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  |     # XXX what's the better way to handle verbosity? print as we create | 
					
						
							|  |  |  |     # each directory in the path (the current behaviour), or only announce | 
					
						
							|  |  |  |     # the creation of the whole path? (quite easy to do the latter since | 
					
						
							|  |  |  |     # we're not using a recursive algorithm) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-26 02:12:31 +00:00
										 |  |  |     name = os.path.normpath(name) | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  |     created_dirs = [] | 
					
						
							| 
									
										
										
										
											2000-09-26 02:12:31 +00:00
										 |  |  |     if os.path.isdir(name) or name == '': | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  |         return created_dirs | 
					
						
							| 
									
										
										
										
											2000-09-30 17:47:17 +00:00
										 |  |  |     if _path_created.get(os.path.abspath(name)): | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  |         return created_dirs | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-26 02:12:31 +00:00
										 |  |  |     (head, tail) = os.path.split(name) | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  |     tails = [tail]                      # stack of lone dirs to create | 
					
						
							| 
									
										
										
										
											2001-12-06 20:51:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-26 02:12:31 +00:00
										 |  |  |     while head and tail and not os.path.isdir(head): | 
					
						
							|  |  |  |         (head, tail) = os.path.split(head) | 
					
						
							|  |  |  |         tails.insert(0, tail)          # push next higher dir onto stack | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # now 'head' contains the deepest directory that already exists | 
					
						
							|  |  |  |     # (that is, the child of 'head' in 'name' is the highest directory | 
					
						
							|  |  |  |     # that does *not* exist) | 
					
						
							|  |  |  |     for d in tails: | 
					
						
							|  |  |  |         #print "head = %s, d = %s: " % (head, d), | 
					
						
							| 
									
										
										
										
											2000-09-26 02:12:31 +00:00
										 |  |  |         head = os.path.join(head, d) | 
					
						
							| 
									
										
										
										
											2000-09-30 17:47:17 +00:00
										 |  |  |         abs_head = os.path.abspath(head) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if _path_created.get(abs_head): | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  |             continue | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-06 00:53:43 +00:00
										 |  |  |         if verbose >= 1: | 
					
						
							| 
									
										
										
										
											2009-02-06 00:38:35 +00:00
										 |  |  |             log.info("creating %s", head) | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if not dry_run: | 
					
						
							|  |  |  |             try: | 
					
						
							| 
									
										
										
										
											2010-09-17 16:35:37 +00:00
										 |  |  |                 os.mkdir(head, mode) | 
					
						
							| 
									
										
										
										
											2007-01-10 16:19:56 +00:00
										 |  |  |             except OSError as exc: | 
					
						
							| 
									
										
										
										
											2010-11-06 04:48:05 +00:00
										 |  |  |                 if not (exc.errno == errno.EEXIST and os.path.isdir(head)): | 
					
						
							|  |  |  |                     raise DistutilsFileError( | 
					
						
							|  |  |  |                           "could not create '%s': %s" % (head, exc.args[-1])) | 
					
						
							|  |  |  |             created_dirs.append(head) | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-30 17:47:17 +00:00
										 |  |  |         _path_created[abs_head] = 1 | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  |     return created_dirs | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-17 11:25:57 +00:00
										 |  |  | def create_tree(base_dir, files, mode=0o777, verbose=1, dry_run=0): | 
					
						
							|  |  |  |     """Create all the empty directories under 'base_dir' needed to put 'files'
 | 
					
						
							|  |  |  |     there. | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-17 11:25:57 +00:00
										 |  |  |     'base_dir' is just the a name of a directory which doesn't necessarily | 
					
						
							|  |  |  |     exist yet; 'files' is a list of filenames to be interpreted relative to | 
					
						
							|  |  |  |     'base_dir'.  'base_dir' + the directory portion of every file in 'files' | 
					
						
							|  |  |  |     will be created if it doesn't already exist.  'mode', 'verbose' and | 
					
						
							|  |  |  |     'dry_run' flags are as for 'mkpath()'. | 
					
						
							|  |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  |     # First get the list of directories to create | 
					
						
							| 
									
										
											  
											
												Merged revisions 56020-56124 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/p3yk
................
  r56037 | georg.brandl | 2007-06-19 05:33:20 -0700 (Tue, 19 Jun 2007) | 2 lines
  Patch #1739659: don't slice dict.keys() in pydoc.
................
  r56060 | martin.v.loewis | 2007-06-21 13:00:02 -0700 (Thu, 21 Jun 2007) | 2 lines
  Regenerate to add True, False, None.
................
  r56069 | neal.norwitz | 2007-06-21 22:31:56 -0700 (Thu, 21 Jun 2007) | 1 line
  Get the doctest working again after adding None, True, and False as kewyords.
................
  r56070 | neal.norwitz | 2007-06-21 23:25:33 -0700 (Thu, 21 Jun 2007) | 1 line
  Add space to error message.
................
  r56071 | neal.norwitz | 2007-06-21 23:40:04 -0700 (Thu, 21 Jun 2007) | 6 lines
  Get pybench working, primarily
   * Use print function
   * Stop using string module
   * Use sorted instead of assuming dict methods return lists
   * Convert range result to a list
................
  r56089 | collin.winter | 2007-06-26 10:31:48 -0700 (Tue, 26 Jun 2007) | 1 line
  Fix AttributeError in distutils/dir_util.py.
................
  r56124 | guido.van.rossum | 2007-06-29 18:04:31 -0700 (Fri, 29 Jun 2007) | 30 lines
  Merged revisions 56014-56123 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk
  ........
    r56019 | lars.gustaebel | 2007-06-18 04:42:11 -0700 (Mon, 18 Jun 2007) | 2 lines
    Added exclude keyword argument to the TarFile.add() method.
  ........
    r56023 | lars.gustaebel | 2007-06-18 13:05:55 -0700 (Mon, 18 Jun 2007) | 3 lines
    Added missing \versionchanged tag for the new exclude
    parameter.
  ........
    r56038 | georg.brandl | 2007-06-19 05:36:00 -0700 (Tue, 19 Jun 2007) | 2 lines
    Bug #1737864: allow empty message in logging format routines.
  ........
    r56040 | georg.brandl | 2007-06-19 05:38:20 -0700 (Tue, 19 Jun 2007) | 2 lines
    Bug #1739115: make shutil.rmtree docs clear wrt. file deletion.
  ........
    r56084 | georg.brandl | 2007-06-25 08:21:23 -0700 (Mon, 25 Jun 2007) | 2 lines
    Bug #1742901: document None behavior of shlex.split.
  ........
    r56091 | georg.brandl | 2007-06-27 07:09:56 -0700 (Wed, 27 Jun 2007) | 2 lines
    Fix a variable name in winreg docs.
  ........
................
											
										 
											2007-06-30 05:01:58 +00:00
										 |  |  |     need_dir = set() | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  |     for file in files: | 
					
						
							| 
									
										
											  
											
												Merged revisions 56020-56124 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/p3yk
................
  r56037 | georg.brandl | 2007-06-19 05:33:20 -0700 (Tue, 19 Jun 2007) | 2 lines
  Patch #1739659: don't slice dict.keys() in pydoc.
................
  r56060 | martin.v.loewis | 2007-06-21 13:00:02 -0700 (Thu, 21 Jun 2007) | 2 lines
  Regenerate to add True, False, None.
................
  r56069 | neal.norwitz | 2007-06-21 22:31:56 -0700 (Thu, 21 Jun 2007) | 1 line
  Get the doctest working again after adding None, True, and False as kewyords.
................
  r56070 | neal.norwitz | 2007-06-21 23:25:33 -0700 (Thu, 21 Jun 2007) | 1 line
  Add space to error message.
................
  r56071 | neal.norwitz | 2007-06-21 23:40:04 -0700 (Thu, 21 Jun 2007) | 6 lines
  Get pybench working, primarily
   * Use print function
   * Stop using string module
   * Use sorted instead of assuming dict methods return lists
   * Convert range result to a list
................
  r56089 | collin.winter | 2007-06-26 10:31:48 -0700 (Tue, 26 Jun 2007) | 1 line
  Fix AttributeError in distutils/dir_util.py.
................
  r56124 | guido.van.rossum | 2007-06-29 18:04:31 -0700 (Fri, 29 Jun 2007) | 30 lines
  Merged revisions 56014-56123 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk
  ........
    r56019 | lars.gustaebel | 2007-06-18 04:42:11 -0700 (Mon, 18 Jun 2007) | 2 lines
    Added exclude keyword argument to the TarFile.add() method.
  ........
    r56023 | lars.gustaebel | 2007-06-18 13:05:55 -0700 (Mon, 18 Jun 2007) | 3 lines
    Added missing \versionchanged tag for the new exclude
    parameter.
  ........
    r56038 | georg.brandl | 2007-06-19 05:36:00 -0700 (Tue, 19 Jun 2007) | 2 lines
    Bug #1737864: allow empty message in logging format routines.
  ........
    r56040 | georg.brandl | 2007-06-19 05:38:20 -0700 (Tue, 19 Jun 2007) | 2 lines
    Bug #1739115: make shutil.rmtree docs clear wrt. file deletion.
  ........
    r56084 | georg.brandl | 2007-06-25 08:21:23 -0700 (Mon, 25 Jun 2007) | 2 lines
    Bug #1742901: document None behavior of shlex.split.
  ........
    r56091 | georg.brandl | 2007-06-27 07:09:56 -0700 (Wed, 27 Jun 2007) | 2 lines
    Fix a variable name in winreg docs.
  ........
................
											
										 
											2007-06-30 05:01:58 +00:00
										 |  |  |         need_dir.add(os.path.join(base_dir, os.path.dirname(file))) | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Now create them | 
					
						
							| 
									
										
											  
											
												Merged revisions 56020-56124 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/p3yk
................
  r56037 | georg.brandl | 2007-06-19 05:33:20 -0700 (Tue, 19 Jun 2007) | 2 lines
  Patch #1739659: don't slice dict.keys() in pydoc.
................
  r56060 | martin.v.loewis | 2007-06-21 13:00:02 -0700 (Thu, 21 Jun 2007) | 2 lines
  Regenerate to add True, False, None.
................
  r56069 | neal.norwitz | 2007-06-21 22:31:56 -0700 (Thu, 21 Jun 2007) | 1 line
  Get the doctest working again after adding None, True, and False as kewyords.
................
  r56070 | neal.norwitz | 2007-06-21 23:25:33 -0700 (Thu, 21 Jun 2007) | 1 line
  Add space to error message.
................
  r56071 | neal.norwitz | 2007-06-21 23:40:04 -0700 (Thu, 21 Jun 2007) | 6 lines
  Get pybench working, primarily
   * Use print function
   * Stop using string module
   * Use sorted instead of assuming dict methods return lists
   * Convert range result to a list
................
  r56089 | collin.winter | 2007-06-26 10:31:48 -0700 (Tue, 26 Jun 2007) | 1 line
  Fix AttributeError in distutils/dir_util.py.
................
  r56124 | guido.van.rossum | 2007-06-29 18:04:31 -0700 (Fri, 29 Jun 2007) | 30 lines
  Merged revisions 56014-56123 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk
  ........
    r56019 | lars.gustaebel | 2007-06-18 04:42:11 -0700 (Mon, 18 Jun 2007) | 2 lines
    Added exclude keyword argument to the TarFile.add() method.
  ........
    r56023 | lars.gustaebel | 2007-06-18 13:05:55 -0700 (Mon, 18 Jun 2007) | 3 lines
    Added missing \versionchanged tag for the new exclude
    parameter.
  ........
    r56038 | georg.brandl | 2007-06-19 05:36:00 -0700 (Tue, 19 Jun 2007) | 2 lines
    Bug #1737864: allow empty message in logging format routines.
  ........
    r56040 | georg.brandl | 2007-06-19 05:38:20 -0700 (Tue, 19 Jun 2007) | 2 lines
    Bug #1739115: make shutil.rmtree docs clear wrt. file deletion.
  ........
    r56084 | georg.brandl | 2007-06-25 08:21:23 -0700 (Mon, 25 Jun 2007) | 2 lines
    Bug #1742901: document None behavior of shlex.split.
  ........
    r56091 | georg.brandl | 2007-06-27 07:09:56 -0700 (Wed, 27 Jun 2007) | 2 lines
    Fix a variable name in winreg docs.
  ........
................
											
										 
											2007-06-30 05:01:58 +00:00
										 |  |  |     for dir in sorted(need_dir): | 
					
						
							| 
									
										
										
										
											2009-02-06 00:38:35 +00:00
										 |  |  |         mkpath(dir, mode, verbose=verbose, dry_run=dry_run) | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-17 11:25:57 +00:00
										 |  |  | def copy_tree(src, dst, preserve_mode=1, preserve_times=1, | 
					
						
							|  |  |  |               preserve_symlinks=0, update=0, verbose=1, dry_run=0): | 
					
						
							|  |  |  |     """Copy an entire directory tree 'src' to a new location 'dst'.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Both 'src' and 'dst' must be directory names.  If 'src' is not a | 
					
						
							|  |  |  |     directory, raise DistutilsFileError.  If 'dst' does not exist, it is | 
					
						
							|  |  |  |     created with 'mkpath()'.  The end result of the copy is that every | 
					
						
							|  |  |  |     file in 'src' is copied to 'dst', and directories under 'src' are | 
					
						
							|  |  |  |     recursively copied to 'dst'.  Return the list of files that were | 
					
						
							|  |  |  |     copied or might have been copied, using their output name.  The | 
					
						
							|  |  |  |     return value is unaffected by 'update' or 'dry_run': it is simply | 
					
						
							|  |  |  |     the list of all files under 'src', with the names changed to be | 
					
						
							|  |  |  |     under 'dst'. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     'preserve_mode' and 'preserve_times' are the same as for | 
					
						
							|  |  |  |     'copy_file'; note that they only apply to regular files, not to | 
					
						
							|  |  |  |     directories.  If 'preserve_symlinks' is true, symlinks will be | 
					
						
							|  |  |  |     copied as symlinks (on platforms that support them!); otherwise | 
					
						
							|  |  |  |     (the default), the destination of the symlink will be copied. | 
					
						
							|  |  |  |     'update' and 'verbose' are the same as for 'copy_file'. | 
					
						
							|  |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  |     from distutils.file_util import copy_file | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-26 02:12:31 +00:00
										 |  |  |     if not dry_run and not os.path.isdir(src): | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |         raise DistutilsFileError( | 
					
						
							|  |  |  |               "cannot copy tree '%s': not a directory" % src) | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  |     try: | 
					
						
							| 
									
										
										
										
											2000-09-26 02:12:31 +00:00
										 |  |  |         names = os.listdir(src) | 
					
						
							| 
									
										
										
										
											2007-01-10 16:19:56 +00:00
										 |  |  |     except os.error as e: | 
					
						
							|  |  |  |         (errno, errstr) = e | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  |         if dry_run: | 
					
						
							|  |  |  |             names = [] | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |             raise DistutilsFileError( | 
					
						
							|  |  |  |                   "error listing files in '%s': %s" % (src, errstr)) | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if not dry_run: | 
					
						
							| 
									
										
										
										
											2009-02-06 00:38:35 +00:00
										 |  |  |         mkpath(dst, verbose=verbose) | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     outputs = [] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for n in names: | 
					
						
							| 
									
										
										
										
											2000-09-26 02:12:31 +00:00
										 |  |  |         src_name = os.path.join(src, n) | 
					
						
							|  |  |  |         dst_name = os.path.join(dst, n) | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-26 02:12:31 +00:00
										 |  |  |         if preserve_symlinks and os.path.islink(src_name): | 
					
						
							|  |  |  |             link_dest = os.readlink(src_name) | 
					
						
							| 
									
										
										
										
											2009-02-06 00:53:43 +00:00
										 |  |  |             if verbose >= 1: | 
					
						
							| 
									
										
										
										
											2009-02-06 00:38:35 +00:00
										 |  |  |                 log.info("linking %s -> %s", dst_name, link_dest) | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  |             if not dry_run: | 
					
						
							| 
									
										
										
										
											2000-09-26 02:12:31 +00:00
										 |  |  |                 os.symlink(link_dest, dst_name) | 
					
						
							|  |  |  |             outputs.append(dst_name) | 
					
						
							| 
									
										
										
										
											2001-12-06 20:51:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-26 02:12:31 +00:00
										 |  |  |         elif os.path.isdir(src_name): | 
					
						
							|  |  |  |             outputs.extend( | 
					
						
							| 
									
										
										
										
											2002-06-04 20:14:43 +00:00
										 |  |  |                 copy_tree(src_name, dst_name, preserve_mode, | 
					
						
							|  |  |  |                           preserve_times, preserve_symlinks, update, | 
					
						
							| 
									
										
										
										
											2009-02-06 00:38:35 +00:00
										 |  |  |                           verbose=verbose, dry_run=dry_run)) | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2002-06-04 20:14:43 +00:00
										 |  |  |             copy_file(src_name, dst_name, preserve_mode, | 
					
						
							| 
									
										
										
										
											2009-02-06 00:38:35 +00:00
										 |  |  |                       preserve_times, update, verbose=verbose, | 
					
						
							|  |  |  |                       dry_run=dry_run) | 
					
						
							| 
									
										
										
										
											2000-09-26 02:12:31 +00:00
										 |  |  |             outputs.append(dst_name) | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return outputs | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-17 01:58:14 +00:00
										 |  |  | def _build_cmdtuple(path, cmdtuples): | 
					
						
							| 
									
										
										
										
											2009-05-17 11:25:57 +00:00
										 |  |  |     """Helper for remove_tree().""" | 
					
						
							| 
									
										
										
										
											2000-06-17 01:58:14 +00:00
										 |  |  |     for f in os.listdir(path): | 
					
						
							|  |  |  |         real_f = os.path.join(path,f) | 
					
						
							|  |  |  |         if os.path.isdir(real_f) and not os.path.islink(real_f): | 
					
						
							|  |  |  |             _build_cmdtuple(real_f, cmdtuples) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             cmdtuples.append((os.remove, real_f)) | 
					
						
							|  |  |  |     cmdtuples.append((os.rmdir, path)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-17 11:25:57 +00:00
										 |  |  | def remove_tree(directory, verbose=1, dry_run=0): | 
					
						
							|  |  |  |     """Recursively remove an entire directory tree.
 | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-17 11:25:57 +00:00
										 |  |  |     Any errors are ignored (apart from being reported to stdout if 'verbose' | 
					
						
							|  |  |  |     is true). | 
					
						
							| 
									
										
										
										
											2000-06-17 02:18:19 +00:00
										 |  |  |     """
 | 
					
						
							|  |  |  |     from distutils.util import grok_environment_error | 
					
						
							| 
									
										
										
										
											2000-06-17 02:19:30 +00:00
										 |  |  |     global _path_created | 
					
						
							| 
									
										
										
										
											2000-06-17 02:18:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-06 00:53:43 +00:00
										 |  |  |     if verbose >= 1: | 
					
						
							| 
									
										
										
										
											2009-02-06 00:38:35 +00:00
										 |  |  |         log.info("removing '%s' (and everything under it)", directory) | 
					
						
							| 
									
										
										
										
											2000-04-04 02:05:59 +00:00
										 |  |  |     if dry_run: | 
					
						
							|  |  |  |         return | 
					
						
							| 
									
										
										
										
											2000-06-17 01:58:14 +00:00
										 |  |  |     cmdtuples = [] | 
					
						
							|  |  |  |     _build_cmdtuple(directory, cmdtuples) | 
					
						
							|  |  |  |     for cmd in cmdtuples: | 
					
						
							|  |  |  |         try: | 
					
						
							| 
									
										
										
										
											2006-03-17 08:00:19 +00:00
										 |  |  |             cmd[0](cmd[1]) | 
					
						
							| 
									
										
										
										
											2000-06-17 01:58:14 +00:00
										 |  |  |             # remove dir from cache if it's already there | 
					
						
							| 
									
										
										
										
											2000-09-30 17:47:17 +00:00
										 |  |  |             abspath = os.path.abspath(cmd[1]) | 
					
						
							| 
									
										
										
										
											2006-08-20 16:25:10 +00:00
										 |  |  |             if abspath in _path_created: | 
					
						
							| 
									
										
										
										
											2000-09-30 17:47:17 +00:00
										 |  |  |                 del _path_created[abspath] | 
					
						
							| 
									
										
										
										
											2007-01-10 16:19:56 +00:00
										 |  |  |         except (IOError, OSError) as exc: | 
					
						
							| 
									
										
										
										
											2002-06-04 20:14:43 +00:00
										 |  |  |             log.warn(grok_environment_error( | 
					
						
							|  |  |  |                     exc, "error removing %s: " % directory)) | 
					
						
							| 
									
										
										
										
											2002-11-26 17:42:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-17 11:14:15 +00:00
										 |  |  | def ensure_relative(path): | 
					
						
							| 
									
										
										
										
											2009-05-17 11:25:57 +00:00
										 |  |  |     """Take the full path 'path', and make it a relative path.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     This is useful to make 'path' the second argument to os.path.join(). | 
					
						
							| 
									
										
										
										
											2002-11-26 17:42:48 +00:00
										 |  |  |     """
 | 
					
						
							|  |  |  |     drive, path = os.path.splitdrive(path) | 
					
						
							| 
									
										
										
										
											2009-05-17 11:14:15 +00:00
										 |  |  |     if path[0:1] == os.sep: | 
					
						
							|  |  |  |         path = drive + path[1:] | 
					
						
							|  |  |  |     return path |