在当前文件夹下将hello_world.txt文件复制为hello_world_bak.txt 将hello_world_bak.txt文件重新 命名为hello_world_copied.txt 将hello_world_copied.txt文件删除
时间: 2023-07-25 12:36:03 浏览: 209
删除文件夹下无用的bak文件
好的,我会按照您的要求执行任务。以下是代码实现:
```python
import shutil
import os
# 复制 hello_world.txt 文件为 hello_world_bak.txt
shutil.copy("hello_world.txt", "hello_world_bak.txt")
print("已复制文件 hello_world.txt 为 hello_world_bak.txt")
# 将 hello_world_bak.txt 文件重命名为 hello_world_copied.txt
os.rename("hello_world_bak.txt", "hello_world_copied.txt")
print("已将文件 hello_world_bak.txt 重命名为 hello_world_copied.txt")
# 删除 hello_world_copied.txt 文件
os.remove("hello_world_copied.txt")
print("已删除文件 hello_world_copied.txt")
```
以上代码中,我们使用了 `shutil` 模块的 `copy()` 函数来复制文件,使用 `os` 模块的 `rename()` 函数来重命名文件,使用 `os` 模块的 `remove()` 函数来删除文件。
希望能够帮到您,如有疑问请随时追问。
阅读全文