in reply to Porting Commands to Windows

Are you aware that Perl has it's own mkdir ? :)

The portable way to use system calls is to try to avoid them. ;)

Cheers Rolf

(addicted to the Perl Programming Language and ☆☆☆☆ :)

Update

A quick search revealed that mkdir on win is considerably different to mkdir on unix, especially when handling options like -p .

But sorry this here is supposed to be a Perl and not an OS forum...

Replies are listed 'Best First'.
Re^2: Porting Commands to Windows
by skx (Parson) on Sep 14, 2014 at 09:12 UTC

    And for handling nesting, etc, you can use File::Path which is distributed with Perl core.

    Steve
    --