in reply to Re: mkdir() problem on windows
in thread mkdir() problem on windows

that's it!

cacls was the trick.

use File::Copy; mkdir "test"; open (PH, "|cacls test /t/ /g VORDEFINIERT\Benutzer:F"); print PH "j\r\n"; close PH; move ('movable', 'test/mov');

works fine! (I'm writing a 'j' to the process because i didn't find a switch to turn off the 'are you sure' question german)

Thanks alot to all of you, especiallly roboticus

have a nice day!

Replies are listed 'Best First'.
Re^3: mkdir() problem on windows
by cdarke (Prior) on Nov 21, 2010 at 17:45 UTC