-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0x06.py
36 lines (31 loc) · 872 Bytes
/
0x06.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
'''
@author:KongWeiKun
@file: 0x06.py
@time: 18-2-11 下午1:19
@contact: [email protected]
'''
import re
import glob as gb
import os
import zipfile
nextNothing ='90052'
basepath = './data/channel/*'
toalpath = gb.glob(basepath)#获取所有文件路径
file = zipfile.ZipFile('./data/channel.zip','r')
print(file)
for name in file.namelist():
line = str(file.read("%s.txt" %nextNothing))
m = re.search('Next nothing is ([0-9]+)', line)
print (file.getinfo("%s.txt" % nextNothing).comment.decode("utf-8"), end=" ")
nextNothing = m.group(1)
##此函数并无太多意义 只是回顾一下之前的知识
i =0
def getName():
global i
fileNumber = []
for path in toalpath:
i += 1
_, filename = os.path.split(path)
number = re.search("\d+",filename).group(0)
fileNumber.append(number)
return fileNumber,i