in reply to Mkdir failing

You can't use mkdir to create deeply nested directories in one go. But you can use make_path (or mkpath) from the (standard) module File::Path to do it for you.

oh, and you have to remove the newline from the end of each filename. A simple way to do that is using chomp.

Replies are listed 'Best First'.
Re^2: Mkdir failing
by MVRS (Acolyte) on Dec 03, 2011 at 04:07 UTC
    thankyou bart, it worked for me with mkpath