"""
Desc: 输出一个目录下所有文件名称
Time: 16th May 2019
"""
import os
def search(paths):
if os.path.isfile(paths): # 如果是文件
print(paths) # 输出文件名
elif os.path.isdir(paths): # 如果是目录
files=os.listdir(paths) # 列出目录中所有的文件
for path in files:
path=os.path.join(paths,path) # 构造文件路径
search(path) # 递归
"""
Desc:正则匹配
"""
import re
re.sub(r'[][.]','','torque.[0]') #去除中括号[]及.
# 另一种写法
import re
regex=re.compile(r'[][.]') #去除中括号[]及.
regex.sub('','torque.[0]')