打开从os.listdir()找到的文件并执行文件

时间:2016-05-18 06:31:56

标签: python python-2.7 file directory pipe

所以我想打开目录中的每个文件(此目录中有4个纯文本文档)。并做一些事情,比如查找每个文件中的特定单词及其出现次数。

这是我使用的代码,但是我收到了没有这样的文件或目录的错误,但是当我打印路径时,它清楚地显示了每个文件的名称。

import re
import os

path = 'C:\\Python27\\projects\\Alabama\\New folder'

pattern = re.compile(r"\bmay not\b",re.IGNORECASE)
pattern1 = re.compile(r"\bshall\b",re.IGNORECASE)
pattern2 = re.compile(r"\bmust\b",re.IGNORECASE)
pattern3 = re.compile(r"\bprohibited\b",re.IGNORECASE)
pattern4 = re.compile(r"\brequired\b",re.IGNORECASE)

for filenames in os.listdir(path):
 with open(filenames) as myfile:
    total = 0
    total1 = 0
    total2 = 0
    total3 = 0
    total4 = 0
    for line in myfile:
        m = re.findall(pattern, line)
        m1 = re.findall(pattern1, line)
        m2 = re.findall(pattern2, line)
        m3 = re.findall(pattern3, line)
        m4 = re.findall(pattern4, line)
        total += len(m)
        total1 += len(m1)
        total2 += len(m2)
        total3 += len(m3)
        total4 += len(m4)
    print total, total1, total2, total3, total4

我的问题是:如何执行上述任务,在目录中分别查找每个文件的特定单词(“必须”,“必须”等)的单词出现次数?

1 个答案:

答案 0 :(得分:3)

listdir仅返回文件名。您必须将路径追加回文件名才能打开它们。

for filenames in os.listdir(path):
    with open(os.path.join(path, filenames)) as myfile:

至于计算单词,你有几个选项,取决于你想要计算的确切程度以及你定义的“出现”。例如,您可以将整个文件作为字符串读取,然后使用str.count方法仅计算特定单词的出现次数。

for filenames in os.listdir(path):
    with open(os.path.join(path, filenames)) as myfile:
        content = myfile.read().lower()  # to essentially ignore the case
        shall_count = content.count('shall')