python复制文件并重命名
时间: 2023-09-03 14:08:09 浏览: 113
基于python实现复制文件并重命名
你可以使用`shutil`库中的`copy`函数来复制文件,并使用`os`库中的`rename`函数来重命名文件。以下是一个示例代码:
```python
import shutil
import os
# 复制文件
shutil.copy('path/to/source/file', 'path/to/destination/file')
# 重命名文件
os.rename('path/to/old/file', 'path/to/new/file')
```
请根据需要替换`path/to/source/file`、`path/to/destination/file`、`path/to/old/file`和`path/to/new/file`。
阅读全文