I'm getting a '104' I/O error while parsing a text file. This one has me
baffled and I can't find out what a 104 error is in the first place.
Here is the source:
SetCurrentDirectory(PChar('C:\Batchadd\InPut\Moved')); //switch to
input directory
FindFirst(PChar('FUSM*.*'), faAnyFile, FindFileData); // find moved
files
AssignFile(TempFile, FindFileData.Name); // assign as text file
Reset(TempFile); //open textfile as read only
While NOT EOF(TempFile) Do ----> This is where the crash occurs
after having gone through once.
Begin
Thanks a lot!
Hajo