in reply to Determine when file is done being written?
As was announced perl6 will change "eval{BLOCK}" to "try{BLOCK}" when it is used for trapping an error, to be more consistent.eval { # your code to be trapped # ... or die "error message 123" } if ($@) { # do your error checking, such as $@=~/error message 123/ }
It is interesting though to have a possibility to check whether writting is currently performing.
I think it is somewhere in IO::* modules (may be in IO::Handle), but unfortunately can not help with this right now.
Have a nice day,
Weasel.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Determine when file is done being written?
by EyeOpener (Scribe) on Jun 12, 2002 at 20:24 UTC | |
by Weasel (Sexton) on Jun 12, 2002 at 20:50 UTC |