os.open(file, flags[, mode]);
file -- 要開啟的檔案名
flags -- 以下常數是標誌 flags 選項。可以用位或操作符相結合。但是其中有些是不是適用於所有平台。
mode -- 這與 chmod() 方法工作的方式類似
#!/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!!")
Closed the file successfully!!