shutil2.py
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:3k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. '''
  2. @file shutil2.py
  3. @brief a better shutil.copytree replacement
  4. $LicenseInfo:firstyear=2007&license=mit$
  5. Copyright (c) 2007-2010, Linden Research, Inc.
  6. Permission is hereby granted, free of charge, to any person obtaining a copy
  7. of this software and associated documentation files (the "Software"), to deal
  8. in the Software without restriction, including without limitation the rights
  9. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. copies of the Software, and to permit persons to whom the Software is
  11. furnished to do so, subject to the following conditions:
  12. The above copyright notice and this permission notice shall be included in
  13. all copies or substantial portions of the Software.
  14. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  19. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  20. THE SOFTWARE.
  21. $/LicenseInfo$
  22. '''
  23. #
  24. # shutil2.py
  25. # Taken from http://www.scons.org/wiki/AccumulateBuilder
  26. # the stock copytree sucks because it insists that the
  27. # target dir not exist
  28. #
  29. import os.path
  30. import shutil
  31. def copytree(src, dest, symlinks=False):
  32.     """My own copyTree which does not fail if the directory exists.
  33.     
  34.     Recursively copy a directory tree using copy2().
  35.     If the optional symlinks flag is true, symbolic links in the
  36.     source tree result in symbolic links in the destination tree; if
  37.     it is false, the contents of the files pointed to by symbolic
  38.     links are copied.
  39.     
  40.     Behavior is meant to be identical to GNU 'cp -R'.    
  41.     """
  42.     def copyItems(src, dest, symlinks=False):
  43.         """Function that does all the work.
  44.         
  45.         It is necessary to handle the two 'cp' cases:
  46.         - destination does exist
  47.         - destination does not exist
  48.         
  49.         See 'cp -R' documentation for more details
  50.         """
  51.         for item in os.listdir(src):
  52.            srcPath = os.path.join(src, item)
  53.            if os.path.isdir(srcPath):
  54.                srcBasename = os.path.basename(srcPath)
  55.                destDirPath = os.path.join(dest, srcBasename)
  56.                if not os.path.exists(destDirPath):
  57.                    os.makedirs(destDirPath)
  58.                copyItems(srcPath, destDirPath)
  59.            elif os.path.islink(item) and symlinks:
  60.                linkto = os.readlink(item)
  61.                os.symlink(linkto, dest)
  62.            else:
  63.                shutil.copy2(srcPath, dest)
  64.     # case 'cp -R src/ dest/' where dest/ already exists
  65.     if os.path.exists(dest):
  66.        destPath = os.path.join(dest, os.path.basename(src))
  67.        if not os.path.exists(destPath):
  68.            os.makedirs(destPath)
  69.     # case 'cp -R src/ dest/' where dest/ does not exist
  70.     else:
  71.        os.makedirs(dest)
  72.        destPath = dest
  73.     # actually copy the files
  74.     copyItems(src, destPath)