Understand serial files: Difference between revisions

From Computer Science Wiki
(Created page with "right|frame|Python programming language<ref>http://www.flaticon.com/</ref> # Serial files store data with no order to the data maintained. # To search da...")
 
No edit summary
Line 1: Line 1:
[[file:python.png|right|frame|Python programming language<ref>http://www.flaticon.com/</ref>]]
[[file:python.png|right|frame|Python programming language<ref>http://www.flaticon.com/</ref>]]


# Serial files store data with no order to the data maintained.
# Serial files store data with no order to the data maintained.

Revision as of 09:30, 29 September 2020

Python programming language[1]
  1. Serial files store data with no order to the data maintained.
  2. To search data from a serial file you begin at the start of the file and read all the data until the item is found.
  3. Data cannot be deleted from a serial file without creating a new file and copying all the data except the item you want to delete.
  4. Data cannot be changed in a serial file without creating a new file, copying all the data across to a new file, inserting the change at the appropriate point.
  5. Data can be appended to a serial file.
  6. A file can be open for reading or writing, but not reading and writing at the same time.
  7. Serial files are quite limiting, but are useful for simple data sets and configuration files. Other types of files include: sequential files where order of the data is maintained, index sequential files for
  8. large data sets and random files which allow you to access any item without searching through the file from the start.

References