Sequential Access
Sequential access 把 file 看成線性資料流。Operation 會從 current position 開始,完成後 position 自動往後移。
常見操作:
read nextwrite nextrewindskip forward n
這種 access method 適合 text file、log、tape-like storage,或任何主要從頭到尾處理的資料。
Sequential access 把 file 看成線性資料流。Operation 會從 current position 開始,完成後 position 自動往後移。
常見操作:
read nextwrite nextrewindskip forward n這種 access method 適合 text file、log、tape-like storage,或任何主要從頭到尾處理的資料。