Python os.open() 方法
python os.open() 方法
os.open() 方法用于打开一个文件,并且设置需要的打开选项,模式参数mode参数是可选的,默认为 0777。
语法
open()方法语法格式如下:
os.open(file, flags[, mode]);
参数
- file -- 要打开的文件
- flags -- 该参数可以是以下选项,多个使用 "|" 隔开:
- os.o_rdonly: 以只读的方式打开
- os.o_wronly: 以只写的方式打开
- os.o_rdwr : 以读写的方式打开
- os.o_nonblock: 打开时不阻塞
- os.o_append: 以追加的方式打开
- os.o_creat: 创建并打开一个新文件
- os.o_trunc: 打开一个文件并截断它的长度为零(必须有写权限)
- os.o_excl: 如果指定的文件存在,返回错误
- os.o_shlock: 自动获取共享锁
- os.o_exlock: 自动获取独立锁
- os.o_direct: 消除或减少缓存效果
- os.o_fsync : 同步写入
- os.o_nofollow: 不追踪软链接
- mode -- 类似 chmod()。
返回值
返回新打开文件的描述符。
实例
以下实例演示了 open() 方法的使用:
#!/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 "关闭文件成功!!"
执行以上程序输出结果为:
关闭文件成功!!