Lines Matching refs:dest_top
22 def copy_dir(src_top, dest_top, dir_name, cp_option = ""):
23 """copy all the files under src_top/dir_name to dest_top/dir_name."""
27 dest_full_path = dest_top + "/" + mid_path
34 def copy_dir_only_file(src_top, dest_top, dir_name):
37 dest_full_path = dest_top + "/" + dir_name
48 def copy_files(src_top, dest_top, files_name):
49 """copy files from src_top to dest_top.
51 under dest_top"""
55 dest_full_path = dest_top + "/" + mid_path
62 def copy_file_if_exists(src_top, dest_top, file_name):
63 """copy file src_top/file_name to dest_top/file_name
69 dest_file = dest_top + "/" + file_name