在 Python 中检查文件大小
确定文件的大小是编程中的常见任务。 Python 提供了多种方法来实现此目的,最简单的是使用 os.path.getsize() 函数。
使用 os.path.getsize()
要使用 os.path.getsize() 在 Python 中获取文件的大小,只需将文件路径作为参数传递给函数即可。输出将以字节为单位的文件大小。
import os file_size = os.path.getsize("/path/to/file.mp3") print(file_size) # Output: 2071611
示例输出
以下代码演示了如何使用 os.path.getsize() 检查文件大小:
import os # Get the size of a file in bytes file_size = os.path.getsize("file.txt") # Print the file size print("File size:", file_size, "bytes")
如果文件“file.txt”大小为 1000 字节,则输出将为:
File size: 1000 bytes
注意:
os.path.getsize() 返回的大小始终以字节为单位。如果您需要不同单位的大小,例如千字节或兆字节,则需要执行适当的转换。
以上是如何在 Python 中获取文件的大小?的详细内容。更多信息请关注PHP中文网其他相关文章!