os.open() 方法用于打开一个文件,并且设置需要的打开选项,模式参数mode参数是可选的,默认为 0777。
open()方法语法格式如下:
os.open(file, flags[, mode]);
file -- 要打开的文件
flags -- 该参数可以是以下选项,多个使用 "|" 隔开:
mode -- 类似 chmod()。
返回新打开文件的描述符。
以下实例演示了 open() 方法的使用:
#!/usr/bin/python3 import os, sys # 打开文件 fd = os.open( "foo.txt", os.O_RDWR|os.O_CREAT ) # 写入字符串 os.write(fd, str.encode("This is test")) # 关闭文件 os.close( fd ) print ("关闭文件成功!!")
执行以上程序输出结果为:
关闭文件成功!!