Functions return md5 sum for the specified file.
This function now supports Unicode (UTF8) file names. You can still use ANSI names, necessary checks and conversion are performed automatically.
See also: ibec_md5
function ibec_md5File (FileName : string) : string;
execute IBEBlock returns (cout varchar(100)) as begin cout = ibec_md5File('d:\mydata.csv'); suspend; end