[Python][自己写的杀病毒脚本]

电脑里的HTML都插入了一段VB病毒代码..只能自己手动清除了..发现Python确实好用

import os
import re;

Root = ["H:"];
for root in Root:
    for rt, dirs, files in os.walk(root):
        for f in files:
            fname = os.path.splitext(f)
            if fname[1]=='.html' : 

                fileString=rt+'\'+f
                print(fileString)
                htmlfile=open(fileString,"r+");
                Filecontent=htmlfile.read();
                Filecontent=str(Filecontent);
                NewFilecontent=re.sub("<SCRIPT Language=VBScript>[sS]*","",Filecontent);
                htmlfile.close();
                htmlfile=open(fileString,"w+");
                htmlfile.write(NewFilecontent);
                htmlfile.close();
原文地址:https://www.cnblogs.com/zy691357966/p/5480282.html