1. 程式人生 > >爬蟲學習之-返回合法文件名

爬蟲學習之-返回合法文件名

turn python 爬蟲學習 urn ida file 返回 pan 文件名

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))])

  

爬蟲學習之-返回合法文件名