python脚本查询指定路径下文件中的所有内容
时间: 2023-12-01 11:02:42 浏览: 61
你可以使用 Python 的 `os` 和 `os.path` 模块来查询指定路径下的文件内容。以下是一个简单的脚本示例:
```python
import os
# 指定要查询的路径
path = '/path/to/folder'
# 遍历指定路径下的所有文件
for filename in os.listdir(path):
# 判断是否是文件
if os.path.isfile(os.path.join(path, filename)):
# 打开文件并读取内容
with open(os.path.join(path, filename), 'r') as f:
content = f.read()
# 输出文件内容
print(f'{filename}: {content}')
```
在以上示例中,我们首先指定要查询的路径,然后使用 `os.listdir()` 函数获取该路径下的所有文件和文件夹名字。接着,我们通过 `os.path.isfile()` 函数判断当前遍历到的是不是一个文件,如果是,则打开文件并读取内容,最后输出文件名和内容。
阅读全文