描述
方法open()打开文件文件,根据flags设置各种flags,可能还根据mode设置它的mode。默认的mode是0777(八进制),首先屏蔽掉当前的umask值。
用法
以下是语法open()方法 -
os.open(file, flags[, mode]);
参数
file− 要打开的文件名。
flags− 以下常量是标志的选项。它们可以使用按位 OR 运算符 | 组合。其中一些并非在所有平台上都可用。
os.O_RDONLY- 仅供阅读
os.O_WRONLY- 只开放写作
os.O_RDWR- 开放阅读和写作
os.O_NONBLOCK- 不要在打开时阻塞
os.O_APPEND- 在每次写入时追加
os.O_CREAT- 如果文件不存在,则创建文件
os.O_TRUNC- 截断大小为 0
os.O_EXCL- 如果创建和文件存在错误
os.O_SHLOCK− 原子地获取共享锁
os.O_EXLOCK− 原子地获取排他锁
os.O_DIRECT− 消除或减少缓存效应
os.O_FSYNC − 同步写入
os.O_NOFOLLOW- 不要遵循符号链接
mode− 此工作方式与 chmod() 方法的用法方式类似。
返回值
此方法返回新打开文件的文件描述符。
示例
下面的例子展示了 open() 方法的用法。
#!/usr/bin/python3
import os, sys
# Open a file
fd = os.open( "foo.txt", os.O_RDWR|os.O_CREAT )
# Write one string
line = "this is test"
# string needs to be converted byte object
b = str.encode(line)
os.write(fd, b)
# Close opened file
os.close( fd)
print ("Closed the file successfully!!")
结果
这将创建给定的文件foo.txt然后将在该文件中写入给定的内容并产生以下结果 -
Closed the file successfully!!
相关用法
- Python 3 os.openpty()用法及代码示例
- Python 3 os.fstatvfs()用法及代码示例
- Python 3 os.minor()用法及代码示例
- Python 3 os.close()用法及代码示例
- Python 3 os.unlink()用法及代码示例
- Python 3 os.major()用法及代码示例
- Python 3 os.rmdir()用法及代码示例
- Python 3 os.fdopen()用法及代码示例
- Python 3 os.fdatasync()用法及代码示例
- Python 3 os.isatty()用法及代码示例
- Python 3 os.rename()用法及代码示例
- Python 3 os.walk()用法及代码示例
- Python 3 os.renames()用法及代码示例
- Python 3 os.makedirs()用法及代码示例
- Python 3 os.utime()用法及代码示例
- Python 3 os.tcgetpgrp()用法及代码示例
- Python 3 os.statvfs()用法及代码示例
- Python 3 os.lchown()用法及代码示例
- Python 3 os.mknod()用法及代码示例
- Python 3 os.lstat()用法及代码示例
注:本文由纯净天空筛选整理自 Python 3 - os.open() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。