码迷,mamicode.com
首页 > 其他好文 > 详细

爬虫学习之-返回合法文件名

时间:2018-09-22 12:43:45      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:files   文件名   文件的   class   date   div   wal   文件   学习   

def validateTitle(title):
    rstr = r"[\/\\\:\*\?\"\<\>\|]"  # ‘/ \ : * ? " < > |‘
    new_title = re.sub(rstr, "_", title)  # 替换为下划线
    return new_title

获取文件的总数

def get_total_files(mkpath):
    return sum([len(x) for _, _, x in os.walk(os.path.dirname(mkpath))])

  

爬虫学习之-返回合法文件名

标签:files   文件名   文件的   class   date   div   wal   文件   学习   

原文地址:https://www.cnblogs.com/php-linux/p/9689643.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!