Python os.close() 方法
python os.close() 方法
os.close() 方法用于關閉指定的文件描述符 fd。
語法
close()方法語法格式如下:
os.close(fd);
參數
- fd -- 文件描述符。
- 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 "關閉文件成功!!"
執行以上程序輸出結果為:
關閉文件成功!!