Home | History | Annotate | Download | only in tools

Lines Matching refs:dest_path

107 def _DownloadUrlToFile(source_url, dest_path):
108 """Download source_url, and save its contents to dest_path.
112 writer = open(dest_path, 'wb')
117 '%s: unable to download source_url %s to dest_path %s' % (
118 e, source_url, dest_path))
160 dest_path=os.path.join(old_flattened_dir,
171 dest_path=os.path.join(new_flattened_dir,
195 def _GitExportBaseVersionOfFile(file_within_repo, dest_path):
200 @param dest_path destination to which to write the base content
216 with open(dest_path, 'wb') as outfile: