Lines Matching refs:symlinks
228 .. function:: copytree(src, dst, symlinks=False, ignore=None, \
240 If *symlinks* is true, symbolic links in the source tree are represented as
245 When *symlinks* is false, if the file pointed by the symlink doesn't
272 Copy metadata when *symlinks* is false.
278 Added the *ignore_dangling_symlinks* argument to silent dangling symlinks
279 errors when *symlinks* is false.
305 symlinks on the filesystem to delete files they wouldn't be able to access
348 removed. In case of symlinks, a new symlink pointing to the target of *src*
477 def copytree(src, dst, symlinks=False):
485 if symlinks and os.path.islink(srcname):
489 copytree(srcname, dstname, symlinks)