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

 Syntax:
 lpszDate = DflDeleteDateGet()

 Parameters:
 None.

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

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

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

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

 Example:
 // To list the deleted files in directory SYS:DATA\WP, and the
 // date and time they were deleted and the user that deleted them:
 lpszfilename = DirDeletedFileList( "SYS:DATA\WP")
 ? "Deleted files in directory SYS:DATA\WP"
 ? "File name | Date Deleted | Time Deleted | Deletor"
 do while ( !empty( lpszfilename ) )
    ? lpszfilename+" "+ DflDeleteDateGet() +" "+;
      DflDeleteTimeGet()+" "+UsrNameGet( DflDeleteIDGet() )
    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() DflDeleteIDGet() DflDeleteTimeGet()

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