Re: Move replacing
Re: Move replacing
- Subject: Re: Move replacing
- From: has <email@hidden>
- Date: Tue, 4 Sep 2001 23:08:46 +0100
Leigh Trevaskis wrote:
>
I am trying to work around a bug with creating log files and replacing them
when a new one is written instead of creating a copy of it.
If it's a script of yours that's producing the log, you could write to the
existing file after setting the its EOF to 0?
--open your log file with write permission
set eof [reference to your log file] to 0
--write your new content
--close the thing again
HTH
has