资源简介
操作word,遍历磁盘,为所选磁盘下所有doc和docx文件插入文本框
代码片段和文件信息
‘‘‘
Created on Sep 19 2014
@author: liu.chunming
‘‘‘
#!/usr/bin/env python
#coding=utf-8
import os
from win32com.client import Dispatch
import string
class ScanFile(object):
def __init__(selfdirectory):
self.directory=directory
def scan_files(self):
files_list=[]
for dirpathdirnamesfilenames in os.walk(self.directory):
for special_file in filenames:
if special_file.endswith(‘.doc‘) or special_file.endswith(‘.docx‘):
if not special_file.startswith(‘~‘):
files_list.append(os.path.join(dirpathspecial_file))
return files_list
def addwatermark(dir):
word = Dispatch(‘Word.Application‘) # 打开word应用程序
word.Visible = 0 # 后台运行不显示
word.DisplayAlerts = 0 # 不警告
print(“正在处理:“+file)
try:
doc = word.Documents.Open(FileName=file Encoding=‘gbk‘)
except :
print(“发生错误:“+file)
- 上一篇:python实现 九九乘法口诀表
- 下一篇:python 将视频转为 字符画
相关资源
- python 将视频转为 字符画
- python实现 九九乘法口诀表
- python 时域特征提取
- python绘制随机颜色太阳花
- 《可爱的python》习题答案.doc
- python浅拷贝、深拷贝
- python 购物金额计算
- python监听socket客户端连接(驱动串口
- 99乘法表(python入门)
- python调用键盘控制游戏事件
- 360接口壁纸爬虫(python)
- python文件文件到本地电脑(基于requ
- Python爬虫:爬取小说站(biqukan.com)网
- Python利用函数判断不同字符个数
- python(flask)入门教程
- python实现3D图(基于matplotlib.pyplot与
- python课本源代码
- gnn(PageRank.ipynb)
- 利用python函数迭代实现hangman猜词游戏
- python实现 9*9乘法表
- python实现端口探测
- python实现贪吃蛇小游戏(面向对象)
- python枚举算法统计三国演义小说人物
- Python实现EXCEL图标自动生成
- 批量替换文件夹下*.py文件里面的pri
- python一个打砖块的小游戏
- python实验指导书 图文高清版
- python主动安装第三方库
- python爬取豆瓣top250电影信息
- python绘制 大蟒蛇
评论
共有 条评论