file_info_***


file_info_type(fi) 
file_info_device(fi) 
file_info_inode(fi) 
file_info_mode(fi) 
file_info_number_of_links(fi) 
file_info_owner(fi) 
file_info_group(fi) 
file_info_size(fi) 
file_info_last_access_time(fi) 
file_info_last_modification_time(fi) 
info_last_change_time(fi) 
file_info_creation_time(fi)
file_info_attributes(fi) 
      

Return the various fields of the file-information record fi.

For file_info_type(fi), the returned value is one of the following symbols:

'regular (a regular file), 'directory, 'character_special (character special device), 'block_special (block special device), 'fifo, 'symbolic_link, 'socket, 'unknown (file is of an unknown type).

For file_info_last_access_time, file_info_last_modification_time, file_info_last_change_time and file_info_creation_time, the return value is a UNIX timestamp. (seconds elapsed since the UNIX epoch).

Also see:

file_attributes


Core Module Index | Main Index