程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Pythons gzip library decompresses all files in a certain path GZ file

編輯:Python

today , Do machine learning , When decompressing the dataset , Reference boss Cluck duck Of article The way to think of it .

The code is as follows :

import sys
import gzip
import os
def process_dataset(path):
# path = 'G:/DeepLearning/data/'
if os.path.exists(path):
# os.system('cd G:/DeepLearning/data/')
# path = os.getcwd()
dirs = os.listdir(path)
# print(dirs)
for dir in dirs:
if '.gz' in dir:
# print(dir)
filename = dir.replace(".gz","")
gzip_file = gzip.GzipFile(path+dir)
# print(gzip_file)
# print(filename)
with open(path+filename,'wb+') as f:
f.write(gzip_file.read())
if __name__ == '__main__':
process_dataset(path='G:/DeepLearning/data/')

Running results :

Last , Thank you for coming to watch my article , There may be many inadequacies in the text , I also hope to point out and sea culvert .


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved