Home | History | Annotate | Download | only in installer

Lines Matching refs:directory

29     dir: The directory to clean.
57 def createZip(zip_path, directory):
58 """Creates a zipfile at zip_path for the given directory.
62 directory: Directory with contents to archive.
66 for (root, dirs, files) in os.walk(directory):
69 rel_path = os.path.relpath(full_path, directory)
75 """Calculates destination file path and creates directory.
95 dst_root: Target directory where files are copied.
102 # Strip of directory prefix.
116 # Make sure target directory exists.
145 """Expands the zip_file into the out_dir, preserving the directory structure.
148 out_dir: Target directory where unzipped files are copied.