Home
last modified time | relevance | path

Searched refs:src_path_dir (Results 1 – 1 of 1) sorted by relevance

/development/project-creator/
Dcreate_project.py71 def cp(src_path_dir, dst_path_dir): argument
80 if not os.path.exists(src_path_dir):
81 print_e('cp error: Source path %s does not exist.' % src_path_dir)
84 copytree(src_path_dir, dst_path_dir, dirs_exist_ok=True)
86 print_e('FAIL: Unable to copy %s to destination %s' % (src_path_dir, dst_path_dir))
96 def mv_dir(src_path_dir, dst_path_dir): argument
110 if not os.path.exists(src_path_dir):
111 print_e('mv error: Source path %s does not exist.' % src_path_dir)
114 os.rename(src_path_dir, dst_path_dir)
116 print_e('FAIL: Unable to copy %s to destination %s' % (src_path_dir, dst_path_dir))