in reply to make directories from path

use File::Path; eval { mkpath($path) }; if ($@) { print "Couldn't create $path: $@"; }
Boris

Replies are listed 'Best First'.
Re^2: make directories from path
by si_lence (Deacon) on Oct 12, 2004 at 15:00 UTC
    I knew there is something like that!
    But somehow I was too blind to see
    Thanks

    si_lence