IFsiItem::put_LastAccessedTime method (imapi2fs.h)

Sets the date and time that the directory or file item was last accessed in the file system image.

Syntax

HRESULT put_LastAccessedTime(
  [in] DATE newVal
);

Parameters

[in] newVal

Date and time that the directory or file item was last accessed in the file system image, according to UTC time. Defaults to the time the item was added to the image.

Return value

S_OK is returned on success, but other success codes may be returned as a result of implementation. The following error codes are commonly returned on operation failure, but do not represent the only possible error values:

Return code Description
IMAPI_E_READONLY
FileSystemImage object is in read only mode.

Value: 0xC0AAB102

E_OUTOFMEMORY
Failed to allocate necessary memory.

Value: 0x8007000E

Remarks

UDFS (UDF) uses the LastAccessedTime value for the CreationTime, as IMAPI does not currently support the CreationTime extended attribute.

CDFS (ISO 9660) sets the LastAccessedTime value to 0, as only the recording time is stored within the File/Directory descriptor.

Requirements

Requirement Value
Minimum supported client Windows Vista, Windows XP with SP2 [desktop apps only]
Minimum supported server Windows Server 2003 [desktop apps only]
Target Platform Windows
Header imapi2fs.h

See also

IFsiItem

IFsiItem::get_LastAccessedTime