Link to home
Create AccountLog in
Avatar of rgb192
rgb192Flag for United States of America

asked on

make a two level directory using wamp

windows
make a two level directory

i can mkdir
mkdir('folder1',"0777");

but not
mkdir('folder1/subfolder1',"0777");

I am forced to
mkdir('folder1',"0777");
and then
mkdir('folder1/subfolder1',"0777");
ASKER CERTIFIED SOLUTION
Avatar of Dave Baldwin
Dave Baldwin
Flag of United States of America image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
Avatar of rgb192

ASKER

not that difficult to do

but at least I know it was not my code mistake

thanks
You're welcome.