This document discusses different file access methods, including sequential access and direct access. Sequential access reads or writes data in order from beginning to end, using a file pointer to keep track of position. Direct access allows reading and writing records in any order by record number. Other access methods build on direct access using an index table to directly access specific records by searching the index. Applications of each method and how direct access can simulate sequential access are also covered.