Created
February 21, 2017 07:50
-
-
Save Chen-tao/6bbd71b9aec02a5692c7d64a4f07dd96 to your computer and use it in GitHub Desktop.
mac unzip chinese file name
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
# unzip-gbk.py | |
import os | |
import sys | |
import zipfile | |
print "Processing File " + sys.argv[1] | |
file=zipfile.ZipFile(sys.argv[1],"r"); | |
for name in file.namelist(): | |
utf8name=name.encode('utf8') | |
print "Extracting " + utf8name | |
pathname = os.path.dirname(utf8name) | |
if not os.path.exists(pathname) and pathname!= "": | |
os.makedirs(pathname) | |
data = file.read(name) | |
if not os.path.exists(utf8name): | |
fo = open(utf8name, "w") | |
fo.write(data) | |
fo.close | |
file.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment