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> dflmodifydateget()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 DflModifyDateGet()
------------------------------------------------------------------------------
 Purpose:
 Get the date a deleted file was last modified.

 Syntax:
 lpszDate = DflModifyDateGet()

 Parameters:
 None.

 Returns:
 A character string of length 8 (see Notes).

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

 Description:
 DflModifyDateGet() returns the date the last deleted file returned by
 the function DirDeletedFileList() was modified.

 DflModifyDateGet() 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:l
 pszfilename = 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.

 The format of the date values is the ANSI style "yyyymmdd" except with
 CA-Clipper and CA-Visual Objects where the date values are of type DATE.

See Also: DirDeletedFileList() DflModifyIDGet() DflModifyTimeGet()

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