这篇教程Python os.close() 方法写得很实用,希望能帮到您。 概述os.close() 方法用于关闭指定的文件描述符 fd。 语法close()方法语法格式如下: os.close(fd); 参数返回值该方法没有返回值。 实例以下实例演示了 close() 方法的使用: #!/usr/bin/python# -*- coding: UTF-8 -*-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.chroot() 方法 Python os.closerange() 方法 |