2.2.8.4.1 SMB_INFO_STANDARD

This information level structure is used in TRANS2_SET_PATH_INFORMATION (section 2.2.6.7) and TRANS2_SET_FILE_INFORMATION (section 2.2.6.9) requests to set timestamp information for the file specified in the request

 SMB_INFO_STANDARD 
   {
   SMB_DATE CreationDate;
   SMB_TIME CreationTime;
   SMB_DATE LastAccessDate;
   SMB_TIME LastAccessTime;
   SMB_DATE LastWriteDate;
   SMB_TIME LastWriteTime;
   UCHAR    Reserved[10];
   }

CreationDate: (2 bytes): This field contains the date when the file was created.

CreationTime: (2 bytes): This field contains the time when the file was created.

LastAccessDate: (2 bytes): This field contains the date when the file was last accessed.

LastAccessTime: (2 bytes): This field contains the time when the file was last accessed.

LastWriteDate: (2 bytes): This field contains the date when data was last written to the file.

LastWriteTime: (2 bytes): This field contains the time when data was last written to the file.

Reserved: (10 bytes): MUST be set to zero when sent and MUST be ignored on receipt.