in reply to deleting a file
Of course if it is difficult or impossible to know how many times a file has been opened for writing or appending (such as often is the case with temp files or regression test output cleanup) then there is a strange little idiom that works on VMS and all other perl implementations (such as Unix):open FH ">foo.txt"; print FH "blah" close FH; open FH1 ">foo.txt"; print FH1 "blah" close FH1; unlink "foo.txt"; # `DELETE FOO.TXT;2` if ($^O eq 'VMS') { unlink "foo.txt" } # `DELETE FOO.TXT;1`
Gets rid of it.1 while unlink $filename;
|
---|