vote up 1 vote down star

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);
flag
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 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 at 12:38

3 Answers

vote up 1 vote down

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

link|flag
That would be perfect, but it doesn't compile and can't find it in the help. – Simes Apr 26 at 13:00
vote up 0 vote down

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|flag
not helpful? Simes, have you tried this? – MasterPeter Apr 26 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 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. – MasterPeter Apr 26 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 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 at 17:03
show 2 more comments
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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