up vote 1 down vote favorite
share [g+] share [fb]

I'm trying to open a text file for reading in a Delphi 7 app, but am getting I/O error 32 (sharing violation) because another application already has the file open. I've tried setting FileMode to "fmOpenRead or fmShareDenyNone" but now realise this doesn't apply to text files anyway.

Is there a way of reading text files that are open by another application?

var
  f: TextFile;
begin
  FileMode := fmOpenRead or fmShareDenyNone;   // FileMode IS NOT APPLICABLE TO TEXT FILES!!
  AssignFile(f, FileName);
  Reset(f);
link|improve this question
Why are you so keen on text files? Why not use the stream classes which allow for proper file access and sharing modes? – mghie Apr 26 '09 at 11:57
because I want to read a single line at a time, and TFileStream doesn't have methods for that. I suppose I could read a buffer full and split on CR/LF. – Simes Apr 26 '09 at 12:38
feedback

5 Answers

It depends on how that other process opened the file... If it opened the file exclusively you are not going to succeed at all.

And TextFile is old hat, I think it will open in exclusive mode to be compatible with Old style DOS. You should use TFileStream or similar.

TStringList may also work, again depending on what the other process is doing. But if the file is being written (like a .log file) the fmShareDenyWrite won't work.

link|improve this answer
I don't know how the other process is opening the file, but Notepad can open it successfully while it is being written to. – Simes Apr 26 '09 at 12:43
Than it looks like you're in luck. Just ditch TextFile. – Henk Holterman Apr 26 '09 at 13:08
@Simes, I outline a process that shows you exactly how the files are being opened, here: stackoverflow.com/questions/737053/log-file-monitor/… – Dangph Apr 26 '09 at 14:37
feedback

This will solve your problem instantly. Load the file using a TStringList. Just call:

...
var sl: TStringList;
begin
  sl := TStringList.create();
  try
    sl.loadFromFile(Filename);
    ...do your stuff here...
  finally
    freeAndNil(sl);
  end;
end;

I found that dealing with text files, it's best to use the TStringList. Otherwise I'd go for TFileStream and there you can specify your opening mode.

link|improve this answer
not helpful? Simes, have you tried this? – Peter Perháč Apr 26 '09 at 11:50
LoadFromFile() uses (at least in Delphi 5 and 2007 it does) "fmOpenRead or fmShareDenyWrite" for the mode. This is definitely not what the OP is wanting. – mghie Apr 26 '09 at 11:55
??? This is exactly what Simes wants, though. He just wants to READ the file without caring about other processes using it. That was exactly his question. – Peter Perháč Apr 26 '09 at 12:24
3  
@MasterPeter, I believe the cullprit mghie is talking about is fmShareDenyWrite.fmShareDenyWrite "locks" a file so other processes can only read... A bit harsh though to downvote your answer because of it. – Lieven Apr 26 '09 at 12:33
1  
@Lieven: You're right on both accounts (I didn't downvote the answer either). @MasterPeter: Opening the file will fail if another process has it open for writing (non-exclusive). fmShareDenyNone is necessary in that case. – mghie Apr 26 '09 at 17:03
show 2 more comments
feedback

If I remember correctly, there is also a Textfilemode Variable that applies to text files only.

link|improve this answer
That would be perfect, but it doesn't compile and can't find it in the help. – Simes Apr 26 '09 at 13:00
feedback

Maybe like this:

  vFileList := TStringList.Create;

  try
    vFileStream := TFileStream.Create('myfile.txt', fmShareDenyNone);
    vFileList.LoadFromStream(vFileStream);
    vFileStream.Destroy;

    // Use vFileList
  finally
    vFileList.Free;
  end;
link|improve this answer
feedback

Use the LoadFromStream method of TStringList, rather than LoadFromFile. You get to control the locking that way:

var
    slFile: TStrings;
    stream: TStream;
begin
   slFile := TStringList.Create;
   try
      stream := TFileStream.Create(filename, fmOpenRead or fmShareDenyNone);
      try 
         slFile.LoadFromStream(stream);
      finally
         stream.Free;
      end;

      //Use the stringlist
   finally
      slFile.Free;
   end;
end;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.