Home | History | Annotate | Download | only in bin

Lines Matching refs:dest_dir

197     def _copy_new_data_in_file(self, file_path, src_dir, dest_dir):
202 @param dest_dir: target directory to store new data of src_dir.
221 target_path = os.path.join(dest_dir,
232 def _log_diff(self, src_dir, dest_dir):
233 """Log all of the new data in src_dir to dest_dir.
236 @param dest_dir: target directory to store new data of src_dir.
243 dest_dir = os.path.join(dest_dir, dir)
245 if not os.path.exists(dest_dir):
246 os.makedirs(dest_dir)
249 self._copy_new_data_in_file(src_file, src_dir, dest_dir)