var
  b:byte;
  f:file of byte;
begin
  assignfile(f,'c:\test.tem');
  reset(f);
  seek(f,12);
  read(f,b);
end上述代码如何用流实现?
即获取c:\test.tem第12字节的值...
thanks,and waiting...