跳至主要内容

文件处理和文件操作

File Handling and File Operations in Python

Python 具有各种内置 函数 和库,使处理文件变得轻而易举,在本文中,我们将探讨在 Python 中处理文件的不同技术和最佳实践。

如何在 Python 中打开文件

使用 Python,您可以轻松地读取和写入系统文件。要读取 Python 中的文件,可以使用 open() 函数。

读取文件

在 Python 中,可以使用 open() 函数读取文件。以下代码示例演示如何在 Python 中读取文件

file = open('example.txt', 'r')
data = file.read()
print(data)

逐行读取文件

有时,您可能希望逐行读取文件。为此,您可以使用 for 循环逐行遍历文件。以下代码演示如何在 Python 中逐行读取文件

file = open('example.txt', 'r')
for line in file:
    print(line)

处理 No such file or directory 错误

在 Python 中处理文件时,遇到 No such file or directory 错误并不少见。要处理此错误,可以使用 tryexcept 块捕获错误并相应地处理它。以下代码演示如何在 Python 中处理 No such file or directory 错误

try:
    file = open('example.txt', 'r')
except FileNotFoundError:
    print("File not found!")

Python 中文件处理的不同模式

在 Python 中,文件处理(文件打开模式)有几种模式,包括

  • 读取模式 ('r'):此模式用于读取现有文件。

  • 写入模式 ('w'):此模式用于写入文件。如果文件不存在,它将创建一个新文件,如果文件存在,它将覆盖该文件。

  • 追加模式 ('a'):此模式用于将新数据添加到现有文件的末尾(追加到文件)。如果文件不存在,将创建一个新文件。

  • 二进制模式 ('b'):此模式用于读取或写入二进制数据,例如图像或音频文件。

在写入模式下打开文件

file = open('example.txt', 'w')

# Write to the file
file.write('Hello, World!')

# Close the file
file.close()

在此示例中,我们首先以写入模式打开名为 example.txt 的文件。我们将字符串 'Hello, World!' 写入文件,然后关闭它。

在读取模式下打开文件

file = open('example.txt', 'r')

# Read the file contents
content = file.read()

# Print the contents
print(content)

# Close the file
file.close()

在此示例中,我们打开同一个文件 example.txt,但这次是在读取模式下。我们使用 read() 方法读取文件内容,将其保存到名为 content 的变量中,然后将内容打印到控制台。最后,我们 close() 文件。

文件操作

Python 提供了重要的 模块,如 osshutil,用于执行文件操作,例如删除、重命名、复制和移动文件。

文件删除

您可以使用 os.remove() 方法在 Python 中删除文件。以下代码片段显示了如何删除名为 example.txt 的文件。

import os

os.remove("example.txt")

文件重命名

您可以使用 os.rename() 方法在 Python 中重命名文件。以下代码片段显示了如何将名为 example.txt 的文件重命名为 new_example.txt

import os

os.rename("example.txt", "new_example.txt")

文件复制

你可以使用 shutil.copy() 方法在 Python 中复制文件。以下代码片段展示了如何将名为 example.txt 的文件复制到名为 new_example.txt 的新文件中。

import shutil

shutil.copy("example.txt", "new_example.txt")

文件移动

你可以使用 shutil.move() 方法在 Python 中移动文件。以下代码片段展示了如何将名为 example.txt 的文件移动到名为 new_folder 的新位置。

import shutil

shutil.move("example.txt", "/path/to/new_folder/example.txt")

Python 中的文件方法

在 Python 中处理文件时,有几个内置方法可以让你读取、写入和操作文件内容。这些方法为文件处理提供了灵活的选择。以下是 Python 中一些常用文件方法的指南

如何读取文件

read() 方法读取文件的所有内容并将其作为字符串返回。另一方面,readline() 方法从文件中读取单行。它将行作为字符串返回,并将文件指针移动到下一行。

file = open("example.txt", "w")
content = file.read()
line = file.readline()
file.close()

如何写入文件

write() 方法用于向文件写入数据。它将字符串作为参数并将其写入文件。或者,writelines() 方法允许你通过提供 字符串 列表向文件写入多行。

file = open("example.txt", "w")
file.write("Hello, World!")
lines = ["Line 1", "Line 2", "Line 3"]
file.writelines(lines)
file.close()

如何关闭文件

close() 方法对于正确处理文件至关重要。它关闭文件并释放与之关联的任何系统资源。在对文件执行操作后关闭文件至关重要,以避免潜在问题。

file = open("example.txt", "w")
# Perform operations on the file
file.close()

这些只是 Python 文件方法的几个示例,这些方法使你能够读取、写入和操作文件。正确处理异常并关闭文件非常重要,以确保高效的文件管理和资源利用。通过有效利用这些文件方法,你可以轻松地在 Python 程序中处理文件操作。

文件大小操作

要获取 Python 中的文件大小,你可以使用 Python 标准库提供的各种方法。以下两个示例演示了如何使用不同的方法检索文件的大小。

如何获取文件大小

os.path 模块提供了一个便捷的方法 getsize(),用于以字节为单位检索文件的大小。

import os

file_path = "example.txt"

try:
    file_size = os.path.getsize(file_path)
    print("File size:", file_size, "bytes")
except FileNotFoundError:
    print("File not found.")

在此示例中,我们使用 os.path 模块中的 getsize() 函数来获取 file_path 指定的文件的大小。如果找到文件,则以字节为单位打印大小。如果找不到文件,则会引发 FileNotFoundError

使用 os.stat 函数获取文件大小

检索文件大小的另一种方法是使用 os.stat() 函数,该函数返回一个包含文件属性(包括文件大小)的命名元组。

import os

file_path = "example.txt"

try:
    file_stats = os.stat(file_path)
    file_size = file_stats.st_size
    print("File size:", file_size, "bytes")
except FileNotFoundError:
    print("File not found.")

在此示例中,我们调用 os.stat() 来获取文件属性,包括大小,该大小可通过返回的命名元组的 st_size 属性进行访问。

通过使用这些方法,你可以轻松地在 Python 中检索文件的大小。请记住处理异常,例如 FileNotFoundError,以解决文件不存在的情况。

文件扩展名操作

在 Python 中处理文件时,你可能经常需要提取文件扩展名以确定你正在处理的文件类型。Python 提供了几种从文件名或路径中获取文件扩展名的方法。

import os

filename = "example.txt"
extension = os.path.splitext(filename)[1]

print("File Extension:", extension)

在此示例中,我们使用 os.path 模块,特别是 splitext() 函数,从给定的文件名中分离文件扩展名。它返回一个包含基本名称和扩展名的元组,我们使用索引提取 extension

如何使用 Python 检查文件是否存在

要检查文件是否存在,可以使用内置的 os 模块,它提供了与操作系统交互的功能。

import os

# Define the path of the file to check
file_path = "/path/to/file"

# Check if the file exists
if os.path.exists(file_path):
    print("File exists!")
else:
    print("File does not exist.")

在此示例中,我们首先import os 模块,然后使用要检查的文件的路径定义 file_path 变量。os.path.exists() 函数用于检查文件是否存在,如果存在,我们将print 一条消息,表明文件存在。如果文件不存在,我们将print 一条消息,表明它不存在。

import os

# Define the path of the file to check
file_path = "/path/to/file"

try:
    # Check if the file exists
    with open(file_path) as f:
        print("File exists!")
except FileNotFoundError:
    print("File does not exist.")

在此示例中,我们使用 tryexcept 块来捕获文件不存在时引发的 FileNotFoundError 异常。我们尝试打开文件:with open(file_path) as f: 如果文件存在,我们将print 一条消息,表明文件存在。如果文件不存在,我们将捕获 FileNotFoundError 异常并print 一条消息,表明文件不存在。

通过使用这两个代码示例中的一个,您可以轻松检查文件是否存在于 Python 中,并根据结果采取适当的操作。

如何创建简单文件

要在 Python 中创建文件,请使用内置的 open() 函数。您可以指定文件名和要打开文件的模式(读取、写入或追加)。

要在 Python 中打印到文件,可以使用带 file 参数的 print() 函数

with open("example.txt", "w") as file:
  print("Hello, World!", file=file)

此代码以写模式创建一个名为 example.txt 的新文件,并将字符串 Hello, World! 写入文件。

要在 Python 中写入文件,可以使用 .write() 方法

with open("example.txt", "w") as file:
  file.write("Hello, World!")

此代码以写模式创建一个名为 example.txt 的新文件,并使用 write() 方法将字符串 Hello, World! 写入文件。

写完后记得关闭文件。使用 with statement 会自动处理此操作。

与我们合作!

不要犹豫,在 GitHub 上为 Python 教程做出贡献:创建分支、更新内容并发出拉取请求。

Profile picture for user AliaksandrSumich
Python 工程师,第三方网络服务集成专家。
更新时间:05/03/2024 - 22:42
Profile picture for user angarsky
已审阅并批准