Home | History | Annotate | Download | only in tools

Lines Matching refs:directory

76     # The name of the ZIP file in a revision directory on the server.
80 # _listing_platform_dir = Directory that holds revisions. Ends with a '/'.
81 # _archive_extract_dir = Uncompressed directory in the archive_name file.
129 """Returns the URL for a directory listing, with an optional marker."""
164 """Parses the Google Storage directory listing into a list of revision
180 raise Exception("Could not locate end namespace for directory index")
211 # until an entire directory listing is done.
289 def UnzipFilenameToDir(filename, directory):
290 """Unzip |filename| to |directory|."""
296 if not os.path.isdir(directory):
297 os.mkdir(directory)
298 os.chdir(directory)
306 directory = os.path.dirname(name)
307 if not os.path.isdir(directory):
308 os.makedirs(directory)
356 # Create a temp directory and unzip the revision into it.