No products in the cart.
Access our premium support and let us know your problems, we will help you solve them.
Recursively create the directory path:
function makedirs($dirpath, $mode=0777) {
return is_dir($dirpath) || mkdir($dirpath, $mode, true);
}
Inspired by Python’s os.makedirs()