随笔分类 - 文件
摘要:来源:http://www.delphibasics.co.uk/Article.asp?Name=FilesDelphi file supportDelphi provides a number of different file access mechanisms. The oldest is in support of consoles, where the Read, ReadLn, Wr...
阅读全文
摘要:本例子几个变量的说明TFileRec = record //记录定义Day : Integer;... //其他定义end;f : File of TFileRec; //标准的输入/输出文件FilRec : TFileRec; //记录数据FileName ; //记录文件的名称关于记录文件的相关操作(1)记录文件的打开 (2)记录文件的读入和显示(3)记录...
阅读全文