vote up 2 vote down star

Is there a way to check if a file is already open in Perl? I want to have a read file access, so don't require flock.

 open(FH, "<$fileName") or die "$!\n" if (<FILE_IS_NOT_ALREADY_OPEN>);
 #  or something like
 close(FH) if (<FILE_IS_OPEN>);
flag

4 Answers

vote up 14 vote down check

Try:

 if(tell(FH) != -1)

tell reports where in the file you are. If you get back -1, an invalid position, you aren't anywhere in the file.

link|flag
It works, Thanks :) – matt Feb 6 at 13:21
vote up 6 vote down

Why would you want to do that? The only reason I can think of is when you're using old style package filehandles (which you seem to be doing) and want to prevent accidentally saving one handle over another.

That issue can be resolved by using new style indirect filehandles.

open my $fh, '<', $filename or die "Couldn't open $filename: $!";
link|flag
Oh great, good to know. Thanks. – matt Feb 6 at 13:23
matt: try Perl::Critic for better style – Alexandr Ciornii Feb 13 at 21:45
vote up 1 vote down

Perl provides the fileno function for exactly this purpose.

EDIT I stand corrected on the purpose of fileno(). I do prefer the shorter test

fileno FILEHANDLE

over

tell FH != -1

link|flag
1  
Well... not really. It provides fileno for the purpose of getting the system file descriptor number. Determining whether the filehandle is open is a side effect (just as it's a side effect of tell). – chaos Feb 8 at 20:56
And not a completely reliable side-effect either. It's possible to have a filehandle that's open to something other than a filedescriptor, in which case fileno sensibly returns undef. Examples are tied handles and handles opened to scalars. – hobbs Aug 29 at 22:55
vote up 0 vote down

Why do you care if it is already open? Are you trying to catch simultaneous reads?

You don't really need to care about closing the file. Either it's not open and the close fails because it has nothing to close, or the file is open and the close releases it. Either way, the file is not open on that filehandle. Just close the filehandle without caring it if is not open. Are you seeing something weird there?

link|flag

Your Answer

Get an OpenID
or

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