Lines Matching refs:path
87 mkpath(os.path.dirname(archive_name), dry_run=dry_run)
132 (if installed and found on the default search path). If neither tool is
137 mkpath(os.path.dirname(zip_filename), dry_run=dry_run)
171 path = os.path.normpath(os.path.join(base_dir, ''))
172 zip.write(path, path)
173 log.info("adding '%s'", path)
176 path = os.path.normpath(os.path.join(dirpath, name, ''))
177 zip.write(path, path)
178 log.info("adding '%s'", path)
180 path = os.path.normpath(os.path.join(dirpath, name))
181 if os.path.isfile(path):
182 zip.write(path, path)
183 log.info("adding '%s'", path)
227 base_name = os.path.abspath(base_name)