惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Blog — PlanetScale
Blog — PlanetScale
G
Google Developers Blog
Microsoft Security Blog
Microsoft Security Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
腾讯CDC
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Jina AI
Jina AI
雷峰网
雷峰网
T
Tailwind CSS Blog
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
酷 壳 – CoolShell
酷 壳 – CoolShell
大猫的无限游戏
大猫的无限游戏
月光博客
月光博客
博客园 - 司徒正美
I
InfoQ
Engineering at Meta
Engineering at Meta
Vercel News
Vercel News
小众软件
小众软件
U
Unit 42
Google DeepMind News
Google DeepMind News
D
DataBreaches.Net

博客园 - 哈哈

cas服务器搭建后的调整 使用python直接连接http服务器获取数据 request的url地址 numpy的多项式函数与求导 pandas相关 tcp与ip的包结构 江苏铁路 易经-64卦 使用python实现rpc服务 图书分类-中图法,值得一看的图书 linux时区,curl的使用,nginx日志,watch 使用selenium模仿登录,执行js python与java的交互 计算斐波那契数列 Python线程 selenium的使用 pip使用 python读取postgresql 18位身份证的验证码
python读取docx文件属性-最后一次保存的时间等
哈哈 · 2021-03-03 · via 博客园 - 哈哈

可以用docx获取,但是总有几个文件会报错,所以使用直接获取的方式

import zipfile
import xml.dom.minidom as xdom

def find_zip_prop(p):
	azip = zipfile.ZipFile(p)
	a = azip.read('docProps/core.xml').decode('utf-8')
	xp = xdom.parseString(a)
	root=xp.documentElement
	ele=root.getElementsByTagName('dcterms:modified')
	print(ele[0].firstChild.data)
	ele=root.getElementsByTagName('dcterms:created')
	print(ele[0].firstChild.data)
	azip.close()

if __name__=='__main__':
	p=r'D:\aaa.docx'
	find_zip_prop(p)