Difference between revisions of "File types"

From Free Pascal wiki
Jump to navigationJump to search
m (→‎String list: Fixed page link name)
m (→‎String list: Second time lucky)
Line 21: Line 21:
 
The string list is fast and is suitable for files of small and medium size.  
 
The string list is fast and is suitable for files of small and medium size.  
  
See [[stringlist|String List]]
+
See [[Stringlist|String List]]
  
 
== Typed file ==
 
== Typed file ==

Revision as of 22:43, 15 January 2020

Deutsch (de) English (en) polski (pl)


There are several options for file processing.


Binary file

The binary file type is suitable for processing files of all types and sizes.

See Binary file

FileStream

The FileStream is fast and is suitable for files of small and medium size.

See FileStream

String list

The string list is fast and is suitable for files of small and medium size.

See String List

Typed file

The file type typed file is suitable for structured files of any size.

See Typed file

Untyped text file

The untyped text file type is suitable for files of any size.

See Untyped text file