Returns the TIMESTAMP of a specified file.
No additional description…
function ibec_FileDateTime(FileName : string) : variant;
Returns the TIMESTAMP of a specified file. If the file doesn't exist ibec_FileDateTime returns NULL.
This function supports Unicode (UTF8) file names. You can still use ANSI names, necessary checks and conversion are performed automatically.
execute IBEBlock returns (cout varchar(100)) as begin cout = ibec_FileDateTime('d:\mydata.csv'); suspend; end