in reply to Re: Move damit!
in thread Move damit!

use File::Copy; move($OutFile, "$List/archive.html");

Replies are listed 'Best First'.
Re: Move damit!
by Abigail-II (Bishop) on Sep 18, 2003 at 15:40 UTC
    I fail to understand your point. The problem wasn't that he used 'system', the problem was that he used single quotes instead of double quotes. Given the mistake, the system solution works better than your suggestion - at least that solution gave error messsages. But:
    use File::Copy; move ($OutFile, '$List/archive.html');
    would fail silently because you didn't check the return value of move.

    Abigail