in reply to Perl API that emulates mkdir -p on unix?

There is the File::Path module (in the standard distribution of Perl even), which does exactly that, create intermediate directories if they don't exist.

  • Comment on Re: Perl API that emulates mkdir -p on unix?

Replies are listed 'Best First'.
Re^2: Perl API that emulates mkdir -p on unix?
by snowhare (Friar) on Jun 14, 2004 at 01:06 UTC
    However, be aware that File::Path does not play nice with taint. I had to 'roll my own' in-house equivalent because of this.