Blink Reformat | 4c46d09 | 2018-04-07 15:32:37 +0000 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | # Copyright 2016 The Chromium Authors. All rights reserved. |
| 3 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | # found in the LICENSE file. |
| 5 | |
| 6 | import sys |
| 7 | import zipfile |
| 8 | |
| 9 | if len(sys.argv) < 3: |
| 10 | print('Usage: {} <src> <dest>'.format(sys.argv[0])) |
| 11 | print(' <src> full path to zip file to be extracted') |
| 12 | print(' <dest> full path to destination folder') |
| 13 | sys.exit(1) |
| 14 | |
| 15 | src = sys.argv[1] |
| 16 | dest = sys.argv[2] |
| 17 | |
| 18 | zip_ref = zipfile.ZipFile(src, 'r') |
| 19 | zip_ref.extractall(dest) |
| 20 | zip_ref.close() |