Searched defs:copytree (Results 1 - 5 of 5) sorted by relevance

/external/python/cpython2/Lib/plat-mac/
H A Dmacostools.py130 def copytree(src, dst, copydates=1): function
136 copytree(os.path.join(src, f), os.path.join(dst, f), copydates)
/external/python/cpython2/Lib/
H A Dshutil.py26 "copytree", "move", "rmtree", "Error", "SpecialFileError",
134 """Function that can be used as copytree() ignore parameter.
145 def copytree(src, dst, symlinks=False, ignore=None): function
158 being visited by copytree(), and `names` which is the list of
163 Since copytree() is called recursively, the callable will be
189 copytree(srcname, dstname, symlinks, ignore)
193 # catch the Error from the recursive copytree so that we can
299 copytree(src, real_dst, symlinks=True)
/external/skia/tools/skp/
H A Dwebpages_playback.py491 def copytree(source_dir, dest_dir): function in function:LocalFileSystemDataStore.upload_dir_contents
498 copytree(source, dest)
501 copytree(source_dir, os.path.join(self._base_dir, dest_dir))
/external/skqp/tools/skp/
H A Dwebpages_playback.py491 def copytree(source_dir, dest_dir): function in function:LocalFileSystemDataStore.upload_dir_contents
498 copytree(source, dest)
501 copytree(source_dir, os.path.join(self._base_dir, dest_dir))
/external/python/cpython3/Lib/
H A Dshutil.py46 "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, function
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`
[all...]

Completed in 195 milliseconds