Wednesday, October 22, 2025

change/check file date and time

// Hurricane | idlagam.com
CLS
// HB_FSETDATETIME( <cFile>, [<dDate> | <tDateTime>] [, <cTime>] ) // --> lSuccess

// changing file date and time
//? HB_FSETDATETIME('acbr.log', DATE()+1, '11:05:14' )
//? HB_FSETDATETIME( 'acbr.log' )              // assigns current date and time
//? HB_FSETDATETIME('acbr.log', , '11:05:13' ) // assumes current date
? HB_FSETDATETIME('acbr.log', DATE()-2 )       // assumes current time
// querying file date and time
dDate:=nil
cTime:=nil
? hb_fGetDateTime('acbr.log', @dDate, @cTime)
? dDate, cTime

change/check file date and time

// Hurricane | idlagam.com CLS // HB_FSETDATETIME( <cFile>, [<dDate> | <tDateTime>] [, <cTime>] ) // --> lSuccess...