Python3 os.close() 方法

概述

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

语法

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

  1. os.close(fd);

参数

  • fd — 文件描述符。

返回值

该方法没有返回值。

实例

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

  1. #!/usr/bin/python3
  2.  
  3. import os, sys
  4.  
  5. # 打开文件
  6. fd = os.open( "foo.txt", os.O_RDWR|os.O_CREAT )
  7.  
  8. # 写入字符串
  9. os.write(fd, "This is test")
  10.  
  11. # 关闭文件
  12. os.close( fd )
  13.  
  14. print ("关闭文件成功!!")

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

  1. 关闭文件成功!!