4
votes
7answers
1k views
Delphi: Why do I sometimes get an I/O Error 103 with this code?
In several of my apps I have code similar to the following:
if ForceDirectories(ExtractFilePath(lLogName)) then
begin
AssignFile(lLog, lLogName);
try
if FileExists(lLogName) then
…
