Python os.close() 方法
os.close() 方法用于关闭指定的文件描述符 fd
导入模块
import os
语法
os.close(fd);
参数
参数 | 说明 |
---|---|
fd | 文件描述符 |
返回值
无
范例
下面的代码使用 os.close() 关闭文件描述符 fd
#!/usr/bin/python import os, sys # 打开文件 fd = os.open( "demo.txt", os.O_RDWR|os.O_CREAT ) # 写入字符串 os.write(fd, "This is test") # 关闭文件 os.close( fd ) print ( "关闭文件成功!!" )
运行以上 Python 代码,输出结果如下
关闭文件成功!!