Checking File is Open in Delphi

26,561

Solution 1

You can get the filemode. (One moment, I'll create an example).

TTextRec(txt).Mode gives you the mode:

55216 = closed
55217 = open read
55218 = open write

fmClosed = $D7B0;
fmInput  = $D7B1;
fmOutput = $D7B2;
fmInOut  = $D7B3;

Search TTextRec in the system unit for more information.

Solution 2

Try this:

function IsFileInUse(fName: string) : boolean;
var
  HFileRes: HFILE;
begin
  Result := False;
  if not FileExists(fName) then begin
    Exit;
  end;

  HFileRes := CreateFile(PChar(fName)
    ,GENERIC_READ or GENERIC_WRITE
    ,0
    ,nil
    ,OPEN_EXISTING
    ,FILE_ATTRIBUTE_NORMAL
    ,0);

  Result := (HFileRes = INVALID_HANDLE_VALUE);

  if not(Result) then begin
    CloseHandle(HFileRes);
  end;
end;

Solution 3

This works fine:

function IsOpen(const txt:TextFile):Boolean;
const
  fmTextOpenRead = 55217;
  fmTextOpenWrite = 55218;
begin
  Result := (TTextRec(txt).Mode = fmTextOpenRead) or (TTextRec(txt).Mode = fmTextOpenWrite)
end;

Solution 4

I found it easier to keep a boolean variable as a companion; example: bFileIsOpen. Wherever the file is opened, set bFileIsOpen := true then, whenever you need to know if the file is open, just test this variable; example: if (bFileIsOpen) then Close(datafile);

Share:
26,561
JamesSugrue
Author by

JamesSugrue

Mobile Software Developer. Author of Building iOS 5 Games: Develop and Design for Peachpit Press. Long time columnist for PC World (NZ) until it went out of print in 2013. Feel free to get in contact: james at softwarex dot co dot nz Mastodon.social: @KiwiBastard

Updated on January 11, 2020

Comments

  • JamesSugrue
    JamesSugrue over 4 years

    Is there a way to check if a file has been opened by ReWrite in Delphi?

    Code would go something like this:

    AssignFile(textfile, 'somefile.txt');
    if not textFile.IsOpen then
       Rewrite(textFile);