home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / PROGRAM / PASCAL / PASTUT34 / FILETYPE.TXT < prev    next >
Text File  |  1993-01-23  |  1KB  |  41 lines

  1.                              FILE TYPES.
  2.                              ▀▀▀▀▀▀▀▀▀▀▀
  3.  
  4. Files are described by a name of up to 8 characters plus an extension
  5. name of up to 3 characters. Whereas the file name is selected by the
  6. user, the extension name is frequently defined by the system in use.
  7. Some typical extension names relevant to MS-DOS and Turbo Pascal are:
  8.  
  9. .BAK  Backup source file - a resaved file automatically saves the               original as a .BAK file.
  10.  
  11. .BAT  Batch file containing a sequence of MS-DOS command lines.
  12.  
  13. .BGI  Borland Graphics Interface file, for screen display.
  14.  
  15. .COM  Compiled file, which is an executable file from MS-DOS.
  16.  
  17. .EXE  Executable file from MS-DOS.
  18.  
  19. .HLP  Help file.
  20.  
  21. .PAS  Pascal source code file.
  22.  
  23. .SYS  System file used by MS-DOS.
  24.  
  25. .TPL  Turbo Pascal Library File.
  26.  
  27. .TPU  Turbo Pascal Unit file.
  28.  
  29. .TXT  Text file in ASCII format.
  30.  
  31.  
  32. Source code, written in a high level language, such as Pascal, is converted
  33. into Object code (machine language) by a Compiler. Whereas Turbo Pascal,
  34. version 3, created .COM files at compilation, version 6.0 now creates .EXE
  35. files.
  36.  
  37.  
  38. FILETYPE.TXT
  39. 18.4.90
  40.  
  41.