我用delphi7读写文本文件,11.txt不存在,每次创建新的
  exFile:String;
  inFile:array[1..2]of textFile;
  for i:=1 to2 do
  begin
         exFile:='c:\source\11.txt';
         AssignFile(inFile[i],exFile);
         reWrite(inFile[i]);  end;
运行时有时正常,有时报I/O error 32,请问是什么原因?