Python 3 教程 Python3 os.close() 方法

archie · 2022-03-14 20:45:12 · 热度: 9

概述

os.close() 方法用于关闭指定的文件描述符 fd。

语法

close()方法语法格式如下:

os.close(fd);

参数

  • fd -- 文件描述符。

返回值

该方法没有返回值。

实例

以下实例演示了 close() 方法的使用:

实例

#!/usr/bin/python3

import os, sys

# 打开文件
fd = os.open( "foo.txt", os.O_RDWR|os.O_CREAT )

#  写入字符串
os.write(fd, "This is test")

# 关闭文件
os.close( fd )

print ("关闭文件成功!!")

执行以上程序输出结果为:

关闭文件成功!!

查看更多 Python OS 文件/目录 函数

猜你喜欢:
暂无回复。
需要 登录 后方可回复, 如果你还没有账号请点击这里 注册