当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python os.open()用法及代码示例


Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。

os.open()Python中的方法用于打开指定的文件路径,并根据指定的标志及其模式根据指定的模式设置各种标志。
此方法返回新打开文件的文件描述符。返回的文件描述符是不可继承的。

用法: os.open(path, flags, mode = 0o777, *, dir_fd = None)

参数:
Path:代表文件系统路径的path-like对象。这是要打开的文件路径。
path-like对象是表示路径的字符串或字节对象。
flags:此参数指定要为新打开的文件设置的标志。
mode(可选):代表新打开文件模式的数值。该参数的默认值为0o777(八进制)。
dir_fd(可选):引用目录的文件描述符。

返回类型:此方法返回新打开文件的文件描述符。

代码:用于os.open()打开文件路径的方法
# Python program to explain os.open() method  
  
# importing os module  
import os 
  
  
# File path to be opened 
path = './file9.txt'
  
# Mode to be set  
mode = 0o666
  
# flags 
flags = os.O_RDWR | os.O_CREAT 
  
  
# Open the specified file path 
# using os.open() method 
# and get the file descriptor for  
# opened file path 
fd = os.open(path, flags, mode) 
  
print("File path opened successfully.") 
  
  
# Write a string to the file 
# using file descriptor 
str = "GeeksforGeeks:A computer science portal for geeks."
os.write(fd, str.encode()) 
print("String written to the file descriptor.")  
  
  
# Now read the file  
# from beginning 
os.lseek(fd, 0, 0) 
str = os.read(fd, os.path.getsize(fd)) 
print("\nString read from the file descriptor:") 
print(str.decode()) 
  
# Close the file descriptor 
os.close(fd) 
print("\nFile descriptor closed successfully.")
输出:
File path opened successfully.
String written to the file descriptor.

String read from file descriptor:
GeeksforGeeks:A computer science portal for geeks.

File descriptor closed successfully.

参考: https://docs.python.org/3/library/os.html#os.open



相关用法


注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.open() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。