Python 简明教程
Python - Renaming and Deleting Files
Renaming and Deleting Files in Python
在 Python 中,你可以使用 os 模块中的内置函数重命名和删除文件。这些操作在文件系统中管理文件时非常重要。在本教程中,我们将逐步探究如何执行这些操作。
Renaming Files in Python
要在 Python 中重命名文件,你可以使用 os.rename() function . 该函数有两个参数:当前文件名和新文件名。
Example
这里有一个示例,使用 rename() 函数将现有文件“oldfile.txt”重命名为“newfile.txt”:
import os
# Current file name
current_name = "oldfile.txt"
# New file name
new_name = "newfile.txt"
# Rename the file
os.rename(current_name, new_name)
print(f"File '{current_name}' renamed to '{new_name}' successfully.")
以下是上面代码的输出: -
File 'oldfile.txt' renamed to 'newfile.txt' successfully.
Deleting Files in Python
你可以在 Python 中使用 os.remove() function 删除文件。该函数会删除由文件名指定的某个文件。