python清除指定目录内所有文件中script的方法


Posted in Python onJune 30, 2015

本文实例讲述了python清除指定目录内所有文件中script的方法。分享给大家供大家参考。具体如下:

将脚本存储为stripscripts.py
调用语法 : python stripscripts.py <directory>
使用范例 : python stripscripts.py d:\myfiles

# Hello, this is a script written in Python. See http://www.pyhon.org
import os,sys,string,re
message = """
 stripscripts 1.1p - Script stripper
 This script will walk a directory (and its subdirectories) and disable
 all scripts (javascript, vbscript...) from .html and .htm files.
 (The scripts will not be deleted, but simply deactivated, so that
 you can review them if you like.)
 Can be usefull for sites you have downloaded with HTTrack or similar tools.
 No more nosey or buggy scripts in your local html files.
 Syntax : python %s <directory>
 Example : python %s d:\myfiles
 This script is public domain. You can freely reuse it.
 The author is
    Sebastien SAUVAGE
    <sebsauvage at sebsauvage dot net>
    http://sebsauvage.net
 More quick & dirty scripts are available at http://sebsauvage.net/python/
""" % ((sys.argv[0], )*2)
def stripscripts ( directoryStart ) :
  os.path.walk( directoryStart, callback, '' )
def callback ( args, directory, files ) :
  print 'Scanning',directory
  for fileName in files:
    if os.path.isfile( os.path.join(directory,fileName) ) :
      if string.lower(os.path.splitext(fileName)[1]) in ['.html','.htm'] :
        stripScriptFromHtml ( os.path.join(directory,fileName) )
def stripScriptFromHtml ( filepath ) :
  print ' Processing',os.path.split(filepath)[1]
  file = open(filepath, 'rb')
  html = file.read()
  file.close()
  regexp = re.compile(r'<script.*?>', re.IGNORECASE)
  html = regexp.sub('<script language="MonthyPythonsScript">',html)
  file = open(filepath, 'w+')
  file.write(html)
  file.close()
if len(sys.argv) > 1 :
  stripscripts( sys.argv[1] )
else:
  print message

希望本文所述对大家的Python程序设计有所帮助。

Python 相关文章推荐
Python编写的com组件发生R6034错误的原因与解决办法
Apr 01 Python
Python的Tornado框架实现异步非阻塞访问数据库的示例
Jun 30 Python
Django后台获取前端post上传的文件方法
May 28 Python
Python3实现转换Image图片格式
Jun 21 Python
python使用PIL给图片添加文字生成海报示例
Aug 17 Python
python TKinter获取文本框内容的方法
Oct 11 Python
Python读取系统文件夹内所有文件并统计数量的方法
Oct 23 Python
python 读取dicom文件,生成info.txt和raw文件的方法
Jan 24 Python
Python Opencv实现单目标检测的示例代码
Sep 08 Python
Python暴力破解Mysql数据的示例
Nov 09 Python
用pushplus+python监控亚马逊到货动态推送微信
Jan 29 Python
用60行代码实现Python自动抢微信红包
Feb 04 Python
RC4文件加密的python实现方法
Jun 30 #Python
详解Python中的序列化与反序列化的使用
Jun 30 #Python
Python中函数的参数传递与可变长参数介绍
Jun 30 #Python
python实现文件快照加密保护的方法
Jun 30 #Python
Python实现高效求解素数代码实例
Jun 30 #Python
python实现DES加密解密方法实例详解
Jun 30 #Python
python实现的系统实用log类实例
Jun 30 #Python
You might like
亚洲咖啡有什么?亚洲咖啡产地介绍 亚洲咖啡有什么特点?
2021/03/05 新手入门
xss防御之php利用httponly防xss攻击
2014/03/21 PHP
php查找字符串出现次数的方法
2014/12/01 PHP
PHP使用redis实现统计缓存mysql压力的方法
2015/11/14 PHP
Yii2实现UploadedFile上传文件示例
2017/02/15 PHP
php基于Redis消息队列实现的消息推送的方法
2018/11/28 PHP
YII框架行为behaviors用法示例
2019/04/26 PHP
{}与function(){}选用空对象{}来存放keyValue
2012/05/23 Javascript
Jquery each方法跳出循环,并获取返回值(实例讲解)
2013/12/12 Javascript
Extjs grid添加一个图片状态或者按钮的方法
2014/04/03 Javascript
Javascript基础教程之break和continue语句
2015/01/18 Javascript
jQuery获取上传文件的名称的正则表达式
2015/05/21 Javascript
jquery图片滚动放大代码分享(2)
2015/08/28 Javascript
javascript容错处理代码(屏蔽js错误)
2017/01/20 Javascript
新版vue-cli模板下本地开发环境使用node服务器跨域的方法
2018/04/03 Javascript
使用Object.defineProperty如何巧妙找到修改某个变量的准确代码位置
2018/11/02 Javascript
纯js实现无缝滚动功能代码实例
2020/02/21 Javascript
在vscode 中设置 vue模板内容的方法
2020/09/02 Javascript
在vue中使用eslint,配合vscode的操作
2020/11/09 Javascript
vue.js+element 默认提示中英文操作
2020/11/11 Javascript
在Python中用split()方法分割字符串的使用介绍
2015/05/20 Python
python3中str(字符串)的使用教程
2017/03/23 Python
简单的python后台管理程序
2017/04/13 Python
python3第三方爬虫库BeautifulSoup4安装教程
2018/06/19 Python
Python for循环中的陷阱详解
2018/07/13 Python
如何在Django中添加没有微秒的 DateTimeField 属性详解
2019/01/30 Python
Python pymysql模块安装并操作过程解析
2020/10/13 Python
俄罗斯和世界各地的酒店预订:Hotels.com俄罗斯
2016/08/19 全球购物
GAP美国官网:美国休闲时尚品牌
2016/08/26 全球购物
监考失职检讨书
2015/01/26 职场文书
个人维稳承诺书
2015/05/04 职场文书
夫妻吵架保证书
2015/05/08 职场文书
2015年中学校长工作总结
2015/05/19 职场文书
python 如何执行控制台命令与操作剪切板
2021/05/20 Python
python字符串的多行输出的实例详解
2021/06/08 Python
Hive导入csv文件示例
2022/06/25 数据库