meta data for this page
ibec_FileSize
Returns the size of the specified file.
Description
The ibec_FileSize function returns the size in bytes of the file specified by FileName. If the file does not exist, the function returns NULL.
This function supports Unicode (UTF8) file names. You can still use ANSI names, necessary checks and conversion are performed automatically.
Syntax
function ibec_FileSize(FileName : string): variant;
Example
execute ibeblock
returns (fname varchar(100), isize integer)
as
begin
options = __gfFullName;
files_count = ibec_getfiles(files_list, 'E:\Projects_5\', '*.*', options);
if (files_count > 0) then
begin
i = 0;
while (i < ibec_high(files_list)) do
begin
fname = files_list[i];
isize = ibec_filesize(fname);
suspend;
i = i + 1;
end
end
end