I'm trying to create a folder structure which has multi level sub folders. For example, I want to create a folder structure like 'Fruits/Edible/Seedless'. I tried it with mkdir($path) but it could not done. I tried with single level folder, its created. Help me to create this subfolder structure.
Try using the recursive flag for mkdir($path, $chmod, $recursive)
<?php mkdir($path, 0, true); ?>
From php.net= recursive Allows the creation of nested directories specified in the pathname. Defaults to FALSE.
2.1m questions
2.1m answers
60 comments
57.0k users