python怎么依次读取文件夹的文件
时间: 2024-01-20 15:03:19 浏览: 11
python 文件夹文件读取
你可以使用 Python 中的 os 模块来遍历文件夹中的文件。以下是一个示例代码:
```python
import os
folder_path = '/path/to/folder/'
for filename in os.listdir(folder_path):
file_path = os.path.join(folder_path, filename)
if os.path.isfile(file_path):
with open(file_path, 'r') as f:
# Do something with the file contents
```
你可以将 `folder_path` 替换为你要遍历文件的文件夹路径,然后在循环中使用 `open()` 函数打开文件并对其内容执行操作。
阅读全文