我正在尝试创建一个目录爬虫来搜索文件夹及其所有子文件夹内的所有文件中的特定关键字。这是我到目前为止所拥有的(在这种情况下,我正在寻找关键字“olofx”):
import os
rootDir = os.getcwd()
def scan_file(filename, dirname):
print(os.path.join(dirname,filename))
contains = False
if("olofx" in filename):
contains = True
else:
with open(os.path.join(dirname,filename)) as f:
lines = f.readlines()
for l in lines:
#print(l)
if("olofx" in l):
contains = True
break
if contains:
print("yes")
for dirName, subdirList, fileList in os.walk(rootDir):
for fname in fileList:
scan_file(fname, dirName)
问题是当我到达我的示例 excel 文件之一时,字符似乎不可读。
这是excel文件的一些输出:
;���+͋�۳�L���P!�/��KdocProps/core.xml �(���_K�0���C�{�v�9Cہʞ
n(���v
6H�ݾ�i���|Lι��sI���:��VJ' �@1ͅ�h�^�s9O��VP�8�(//r���6`��r���7c�v ���
我使用过 openpyxl,我知道我可以用它来读取 excel 文件,但我想要一个可以读取各种文件的脚本:word、excel、pdf 等。无论如何都要表示文件的内容,而不管文件类型如何?
九州编程
相关分类