Python 简明教程

Python - Renaming and Deleting Files

Renaming and Deleting Files in Python

在 Python 中,你可以使用 os 模块中的内置函数重命名和删除文件。这些操作在文件系统中管理文件时非常重要。在本教程中,我们将逐步探究如何执行这些操作。

Renaming Files in Python

要在 Python 中重命名文件,你可以使用 os.rename() function . 该函数有两个参数:当前文件名和新文件名。

Syntax

以下是 Python 中 rename() 函数的基本语法:

os.rename(current_file_name, new_file_name)

Parameters

该函数接受以下参数:

  1. current_file_name − 要重命名的文件的当前名称。

  2. new_file_name − 要为该文件分配的新名称。

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 删除文件。该函数会删除由文件名指定的某个文件。

Syntax

以下是 Python 中 remove() 函数的基本语法:

os.remove(file_name)

Parameters

该函数接受要删除的文件名作为参数。

Example

这里有一个示例,使用 remove() 函数删除现有文件“file_to_delete.txt”:

import os

# File to be deleted
file_to_delete = "file_to_delete.txt"

# Delete the file
os.remove(file_to_delete)

print(f"File '{file_to_delete}' deleted successfully.")

执行上面的代码后,我们得到以下输出: -

File 'file_to_delete.txt' deleted successfully.