Creates the specified directory.
"directory/subdirectory/..." - the path to create, will create the paths as needed if one of them doesn't already exist.
The path if the operation was successful or $null.
if (!-exists "/var/www/") { mkdir("/var/www/logs"); mkdir("/var/www/htdocs/misc"); mkdir("/var/www/bin"); }