Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Novlib 3.30 Online Reference - <b> dflmodifyidget()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 DflModifyIDGet()
------------------------------------------------------------------------------
 Purpose:
 Get the ID of the last object to modify a deleted file.

 Syntax:
 dwObjID = DflModifyIDGet()

 Parameters:
 None.

 Returns:
 A numeric value (unsigned long int).

 The CA-Clipper name for this function is:
 DflModIDGet()

 Description:
 DflModifyIDGet() returns the bindery object ID number of the last user
 that modified the last deleted file returned by the function
 DirDeletedFileList().

 DflModifyIDGet() can only be called after DirDeletedFileList() returns a
 valid file name.

 Example:
 // To list the deleted files in directory SYS:DATA\WP, the
 // date and time they were last modified and the user that last modified
 // them:
 lpszfilename = DirDeletedFileList( "SYS:DATA\WP" )
 ? "Deleted files in directory SYS:DATA\WP"
 ? "File name | Date Modified | Time Modified| Modifier"
 do while ( !empty( lpszfilename ) )
    ? lpszfilename+" "+ DflModifyDateGet()+;
    " "+DflModifyTimeGet()+" "+UsrNameGet( DflModifyIDGet() )
    lpszfilename = DirDeletedFileList( "" )
 enddo

 Notes:
 This function only works with NetWare 386 and appropriate trustee
 access rights are required.

See Also: DirDeletedFileList() DflModifyDateGet() DflModifyTimeGet()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson