// 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