Home | History | Annotate | Download | only in Lib

Lines Matching defs:copytree

46            "copytree", "move", "rmtree", "Error", "SpecialFileError",
262 """Function that can be used as copytree() ignore parameter.
273 def copytree(src, dst, symlinks=False, ignore=None, copy_function=copy2,
293 being visited by copytree(), and `names` which is the list of
298 Since copytree() is called recursively, the callable will be
327 # code with a custom `copy_function` may rely on copytree
337 copytree(srcname, dstname, symlinks, ignore,
342 copytree(srcname, dstname, symlinks, ignore, copy_function)
346 # catch the Error from the recursive copytree so that we can
524 to copy the source or it will be delegated to `copytree`.
554 copytree(src, real_dst, copy_function=copy_function,