pychram 读取配置文件中的内容,比对指定文件夹下的文件夹和文件名称替换英文和中文字符,并且告诉我配置文件的格式和每条语句都注释
时间: 2023-11-28 17:50:40 浏览: 53
读取文件夹中所有文件中的内容
下面是一个 Python 读取配置文件中的内容,比对指定文件夹下的文件夹和文件名称替换英文和中文字符的示例代码:
```python
import configparser
import os
# 读取配置文件
config = configparser.ConfigParser()
config.read('config.ini', encoding='utf-8')
# 获取配置项
src_path = config.get('path', 'src_path')
dst_path = config.get('path', 'dst_path')
replace_dict = dict(config.items('replace'))
# 遍历指定文件夹下的所有文件和文件夹,进行名称替换
for root, dirs, files in os.walk(src_path):
for dir_name in dirs:
new_dir_name = dir_name
for key, value in replace_dict.items():
new_dir_name = new_dir_name.replace(key, value)
os.rename(os.path.join(root, dir_name), os.path.join(root, new_dir_name))
for file_name in files:
new_file_name = file_name
for key, value in replace_dict.items():
new_file_name = new_file_name.replace(key, value)
os.rename(os.path.join(root, file_name), os.path.join(root, new_file_name))
```
配置文件 `config.ini` 的格式如下:
```ini
[path]
src_path = /path/to/src
dst_path = /path/to/dst
[replace]
a = A
b = B
c = C
```
其中,`path` 部分包含源文件夹路径和目标文件夹路径,`replace` 部分包含需要替换的英文和中文字符的键值对。每条配置语句都有注释说明其作用。
阅读全文