Lines Matching refs:src
26 def copytree(src: str, dst: str, symlinks: bool = False, ignore=None):
27 src = os.path.normpath(src)
28 for item in os.listdir(src):
31 src_path = os.path.join(src, item)
48 help='src type to copy.')
50 '--src',
64 if args.src_type == "file" or os.path.isfile(args.src):
65 shutil.copy(args.src, out_dir)
68 source_dir = args.src