Lines Matching refs:file_path
76 def __init__(self, file_path): argument
82 stat = os.stat(file_path)
129 for file_path in self._get_all_files(src_dir):
130 self._log_stats[file_path] = file_stat(file_path)
151 def _copy_new_data_in_file(self, file_path, src_dir, dest_dir): argument
160 if self._log_stats.has_key(file_path):
161 prev_stat = self._log_stats[file_path]
162 new_stat = os.stat(file_path)
171 with open(file_path, 'r') as in_log:
176 os.path.relpath(file_path, src_dir))
183 logging.error('Diff %s failed with error: %s', file_path, e)