meta data for this page
  •  

ibec_SetFileDateTime

Sets the TIMESTAMP of a specified file. This function also supports Unicode (UTF8) file names. You can still use ANSI names; necessary checks and conversion are performed automatically.

Description

No additional description…

Syntax

  function ibec_SetFileDateTime(FileName : string; DateTime : timestamp);

Example

 execute IBEBlock
 as
 begin
   ts = current_timestamp;
   ibec_SetFileDateTime('d:\mydata.csv', ts);
 end