Sequential Access

Sequential access 把 file 看成線性資料流。Operation 會從 current position 開始,完成後 position 自動往後移。

常見操作:

  • read next
  • write next
  • rewind
  • skip forward n

這種 access method 適合 text file、log、tape-like storage,或任何主要從頭到尾處理的資料。