int fl;
int handle;
AnsiString filename;
filename="C:\\1111\\account.zip";
handle = open(filename.c_str(), O_RDONLY);
fl=filelength(handle);
close(handle);

Application->MessageBox(AnsiString(filename + ": " + AnsiString(fl) +
  " Bytes").c_str(),"",MB_OK);
