註:此函式適用於低階別的I/O,以及必須由 os.open() 或 pipe() 返回適用於一個檔案描述符。若要讀取「檔案物件」的返回值,這是由內建open()函式或任何通過 popen()或 fdopen(),或 sys.stdin,使用它的 read()或 readline()方法。
os.read(fd,n)
fd -- 這是該檔案的檔案描述符
n -- 這些檔案描述符fd的n個位元組
# !/usr/bin/python3 import os, sys # Open a file fd = os.open("foo.txt",os.O_RDWR) # Reading text ret = os.read(fd,12) print (ret.decode()) # Close opened file os.close(fd) print ("Closed the file successfully!!")
This is test Closed the file successfully!!