从帮助文件来看,如果对pascal file 应该用write(),不能用filewrite():
   To write to a file specified by a Pascal file variable, use Write, Writeln, or BlockWrite instead.
但是我试了却不能写进去。为什么??我想我的文件应该是pascal file 中的typed files啊。
Pascal file types
  These types are used with file variables, usually of the format "F: Text:" or "F: File". The files have three types: typed, text, and untyped. 
   我的文件定义:
   CfgFile : File of TCfgFileInfo; 
TCfgFileInfo 是一个记录。
百思不得其解,是我哪里理解错了吗?