in reply to Re: Re: Determine when file is done being written?
in thread Determine when file is done being written?

Let me add little comment to save you from possible problem.

Actually eval("string") would be much slower than eval{BLOCK} because in first case Perl will parse it every time statement is executed, while second form will be compiled once, and actually it is a replacement for "try".

Best wishes,
Weasel.

  • Comment on Re: Re: Re: Determine when file is done being written?