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里隐藏的“禅”
Jun 16 Python
python实现每次处理一个字符的三种方法
Oct 09 Python
Python中IPYTHON入门实例
May 11 Python
设计模式中的原型模式在Python程序中的应用示例
Mar 02 Python
Python手机号码归属地查询代码
May 04 Python
Python的Asyncore异步Socket模块及实现端口转发的例子
Jun 14 Python
Python实现的凯撒密码算法示例
Apr 12 Python
Pandas:DataFrame对象的基础操作方法
Jun 07 Python
使用python绘制温度变化雷达图
Oct 18 Python
python实现智能语音天气预报
Dec 02 Python
浅谈PyQt5中异步刷新UI和Python多线程总结
Dec 13 Python
python模块和包的应用BASE_PATH使用解析
Dec 14 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/02 无线电
一次编写,随处运行
2006/10/09 PHP
PHP教程之PHP中shell脚本的使用方法分享
2012/02/23 PHP
php遍历替换目录下文件指定内容的方法
2016/11/10 PHP
php用wangeditor3实现图片上传功能
2019/08/22 PHP
php数组和链表的区别总结
2019/09/20 PHP
PHP实现爬虫爬取图片代码实例
2021/03/03 PHP
js中各浏览器中鼠标按键值的差异
2011/04/07 Javascript
关闭浏览器输入框自动补齐 兼容IE,FF,Chrome等主流浏览器
2014/02/11 Javascript
提升PHP安全:8个必须修改的PHP默认配置
2014/11/17 Javascript
JavaScript中的数值范围介绍
2014/12/29 Javascript
如何动态加载外部Javascript文件
2015/12/02 Javascript
AngularJS入门教程之静态模板详解
2016/08/18 Javascript
vue.js实现的绑定class操作示例
2018/07/06 Javascript
iview在vue-cli3如何按需加载的方法
2018/10/31 Javascript
vue如何根据网站路由判断页面主题色详解
2018/11/02 Javascript
ES6 迭代器与可迭代对象的实现
2019/02/11 Javascript
如何让微信小程序页面之间的通信不再变困难
2019/06/03 Javascript
微信小程序实现页面跳转传递参数(实体,对象)
2019/08/12 Javascript
使用typescript构建Vue应用的实现
2019/08/26 Javascript
微信小程序如何播放腾讯视频的实现
2019/09/20 Javascript
小程序input数据双向绑定实现方法
2019/10/17 Javascript
[01:36:57]【09DOTA2第一视角】小骷髅
2014/04/16 DOTA
Python实现在Linux系统下更改当前进程运行用户
2015/02/04 Python
利用python将xml文件解析成html文件的实现方法
2017/12/22 Python
Python matplotlib 画图窗口显示到gui或者控制台的实例
2018/05/24 Python
jupyter note 实现将数据保存为word
2020/04/14 Python
解决keras模型保存h5文件提示无此目录问题
2020/07/01 Python
html+css实现自定义图片上传按钮功能
2019/09/04 HTML / CSS
HTML5+CSS3实现机器猫
2016/10/17 HTML / CSS
html5教你做炫酷的碎片式图片切换 (canvas)
2017/07/28 HTML / CSS
网站域名和主机:Domain.com
2019/04/01 全球购物
2016教师政治学习心得体会
2016/01/23 职场文书
python接口测试返回数据为字典取值方式
2022/02/12 Python
二维码条形码生成的JavaScript脚本库
2022/07/07 Javascript
Spring Boot实现文件上传下载
2022/08/14 Java/Android