FILE.INFO
Syntax FILE.INFO filename
 
Explanation FILE.INFO reports a nine element list containing the following information about the specified file:

[Attributes Size Year Month Day Hour Minute Second Type]

See also DIRECTORY.

The attributes are a combination of the following values:

  • 1 hidden file
  • 2 read-only file
  • 4 file was modified
  • 8 file is a sub-directory

The file type is the Macintosh file type. The Windows version of Logo attempts to report similar file types for Windows files.

Example FILE.INFO "TUNA.LGO 
Result: [0 256 1998 12 14 12 25 50 TEXT] 
(The file TUNA.LGO is 256 bytes in size and was last modified on December 14, 1998 at 12:25:50 p.m. Its type is TEXT)

TopIndex