Difference between revisions of "File types"

From Free Pascal wiki
Jump to navigationJump to search
m (→‎String list: Fixed page link name)
(Add page template; move categories to template)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
{{LanguageBar}}
+
{{File types}}
  
  
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 ==
Line 34: Line 34:
  
 
See [[untyped files|Untyped text file]]
 
See [[untyped files|Untyped text file]]
 
[[Category:Pascal]]
 
[[Category:FPC]]
 

Latest revision as of 02:19, 29 January 2022

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