vote up 1 vote down star
1

Hi!

Yes I want to read a simple a logfile into a TStringList and that is easy done with LoadFromFile. But the problem is that the file can be already opened by another program at the same time so an exception may appear. I have tried to use:

FileMode := fmShareCompat;

But it won't work.

I have also tried to use:

fFilePath := fPathList[PathIndex] + '\' + FileData.Name;
AssignFile(vFile, fFilePath);
Reset(vFile, 1);  // Recordsize = 1

SetLength(vFileString, FileData.Size);
BlockRead(vFile, vFileString, FileData.Size);   
vCurrentFile.Text := vFileString;

It raise an EInOutError with message I/O error 998.

Any suggestion ?

flag

70% accept rate

4 Answers

vote up 9 vote down check

Try LoadFromStream and do something like:

fileStream := TFileStream.Create(aFileName, fmShareDenyNone);
myTStringList.LoadFromStream(fileStream);
fileStream.Free();
link|flag
Do not call Destroy directly in an application. Instead, call Free, which checks that the TFileStream reference is not nil and only then calls Destroy. – inzKulozik Jan 16 '09 at 18:43
You are rigth it should be Free not Destroy ... – Drejc Jan 19 at 10:03
vote up 3 vote down

fmShareCompat should probably be marked as deprecated. You want fmShareDenyNone (as Drejc said)

fmShareCompat comes from 16 DOS days I believe. On Windows, it is treated the same as fmShareExclusive. When Linux was supported it was treated the same as fmShareDenyNone.

link|flag
vote up 0 vote down

Thanks a lot! This was the fastest answer ever in a forum.

Now I can continue with other parts of my application.

Sinceraly Roland

link|flag
If Drejc's answer's the one you liked, you should really accept his answer, and thus up his reputation. – Frank Shearar Aug 1 at 18:23
vote up 1 vote down

Also, try..except and try..finally are good friends at these times. Encapsulate your file reading codde in these types of blocks and tell the user about the problem that arises.

link|flag
Yes I know. But I want to search many log-files in a directory. If I have a try except for every file load maybe it slow down the execution. It is already rather slow... /Roland – berocoder Jan 15 '09 at 7:18
1  
You actually want a try / finally for every file. Unless you are reading a lot of really small files I don't see it impacting performance significantly. If it does, then you may want to consider a different mechanism all together. – Jim McKeeth Jan 15 '09 at 9:51

Your Answer

Get an OpenID
or

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