Returns information on a deleted file
typedef struct
{
nuint32 sequence ;
nuint32 parent ;
nuint32 attributes ;
nuint8 uniqueID ;
nuint8 flags ;
nuint8 nameSpace ;
nuint8 nameLength ;
nuint8 name [256];
nuint32 creationDateAndTime ;
nuint32 ownerID ;
nuint32 lastArchiveDateAndTime ;
nuint32 lastArchiverID ;
nuint32 updateDateAndTime ;
nuint32 updatorID ;
nuint32 fileSize ;
nuint8 reserved [44];
nuint16 inheritedRightsMask ;
nuint16 lastAccessDate ;
nuint32 deletedTime ;
nuint32 deletedDateAndTime ;
nuint32 deletorID ;
nuint8 reserved3 [16];
} NWDELETED_INFO;
uses calwin32
NWDELETED_INFO = packed Record
sequence : nuint32;
parent : nuint32;
attributes : nuint32;
uniqueID : nuint8;
flags : nuint8;
nameSpace : nuint8;
nameLength : nuint8;
name : Array[0..255] Of nuint8;
creationDateAndTime : nuint32;
ownerID : nuint32;
lastArchiveDateAndTime : nuint32;
lastArchiverID : nuint32;
updateDateAndTime : nuint32;
updatorID : nuint32;
fileSize : nuint32;
reserved : Array[0..43] Of nuint8;
inheritedRightsMask : nuint16;
lastAccessDate : nuint16;
deletedTime : nuint32;
deletedDateAndTime : nuint32;
deletorID : nuint32;
reserved3 : Array[0..15] Of nuint8
End;
Specifies the sequence number of the associated information.
Specifies the ID of the owning subdirectory.
Specifies the attributes of the associated file.
Specifies the entry number of the file.
Specifies the DOS attributes of the deleted file.
Specifies the name space of the associated file:
Specifies the length of the file name.
Specifies the file name.
Specifies the date and time the file was created.
Specifies the object which created the file.
Specifies the date and time the file was last archived.
Specifies the object which last archived the file.
Specifies the date and time the file was last updated.
Specifies the object which last updated the file.
Specifies the size of the file in bytes.
Is reserved for future use.
Specifies a bit mask of the following:
Specifies the date the file was last accessed.
Specifies the time the file was deleted.
Specifies the date and time the file was deleted.
Specifies the object who deleted the file.
Is reserved for future use.