需要增加解压缩后的文件重命名的给你
时间: 2024-04-13 12:29:23 浏览: 162
好的,以下是一个批量解压缩并重命名文件的示例程序:
```python
import os
import zipfile
def unzip_all_files(directory):
for filename in os.listdir(directory):
if filename.endswith(".zip"):
file_path = os.path.join(directory, filename)
with zipfile.ZipFile(file_path, 'r') as zip_ref:
zip_ref.extractall(directory)
# 解压后的文件重命名
for extracted_file in zip_ref.namelist():
new_name = extracted_file.replace('.txt', '_renamed.txt')
extracted_file_path = os.path.join(directory, extracted_file)
new_file_path = os.path.join(directory, new_name)
os.rename(extracted_file_path, new_file_path)
os.remove(file_path)
# 指定要解压缩的目录
directory = 'path/to/your/directory'
unzip_all_files(directory)
```
将上述代码中的 `'path/to/your/directory'` 替换为你要批量解压缩 zip 文件的目录路径。在这个示例程序中,我假设解压后的文件是以 `.txt` 结尾的,并且将原始文件重命名为 `_renamed.txt`。
运行该程序后,它将遍历目录中的所有 zip 文件,解压缩每个文件,并将其中的文本文件重命名为 `_renamed.txt`。请确保你已经安装了 Python,并且导入了 zipfile 和 os 模块。
阅读全文