NW_AFP_SET_INFO

Defines Apple file attributes

Service:AFP
Defined In:nwafp.h

Structure

  typedef struct 
  { 
     nuint16   attributes ; 
     nuint16   creationDate ; 
     nuint16   accessDate ; 
     nuint16   modifyDate ; 
     nuint16   modifyTime ; 
     nuint16   backupDate ; 
     nuint16   backupTime ; 
     nuint8    finderInfo [32]; 
     nuint8    proDOSInfo [6]; 
  } NW_AFP_SET_INFO, AFPSETINFO;
  

Delphi Structure

  uses calwin32 
   
  AFPSETINFO = packed Record 
     attributes : nuint16; 
     creationDate : nuint16; 
     accessDate : nuint16; 
     modifyDate : nuint16; 
     modifyTime : nuint16; 
     backupDate : nuint16; 
     backupTime : nuint16; 
     finderInfo : Array[0..31] Of nuint8; 
     proDOSInfo : Array[0..5] Of nuint8 
   End;
  

Fields

attributes
Specifies the file attributes.
creationDate
Specifies the creation date (in AFP format) of the target directory or file.
accessDate
Specifies when the target AFP file was last accessed (returned in AFP format).
modifyDate
Specifies the last modified date (in AFP format) of the target AFP file.
modifyTime
Specifies the last modified time (in AFP format) of the target AFP file.
backupDate
Specifies the last date (in AFP format) the file was backed up.
backupTime
Specifies the time (in AFP format) the file was last backed up.
finderInfo
Specifies the information defined in Apple documentation.
proDOSInfo
Specifies the 6-byte structure defined in Apple documentation.