Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've run into a few cases with wordpress installs with bluehost where I've encountered errors with my wordpress theme because the uploads folder (wp-content/uploads) was not present.

Apparently the bluehost cpanel WP installer does not create this folder, though HostGator does.

So I need to add code to my theme that checks for the folder and creates it otherwise.

share|improve this question

5 Answers

up vote 79 down vote accepted

Try this:

if (!file_exists('path/to/directory')) {
    mkdir('path/to/directory');
}
share|improve this answer
Looks like we have a winner! Thanks Gumbo! – Scott B Feb 20 '10 at 21:21
1  
You missed the 'recursive' flag - see Satish's answer. – Francois Bourgeois Mar 13 at 13:04
Yeah ! Old good php style ! – Fedir Mar 25 at 18:13

What about a helper function like this:

function makeDir($path)
{
   $ret = mkdir($path); // use @mkdir if you want to suppress warnings/errors
   return $ret === true || is_dir($path);
}

It will return true if the directory was successfully created or already exists, and false if the directory couldn't be created.

Another alternative is:

function makeDir($path)
{
   return is_dir($path) || mkdir($path);
}
share|improve this answer
1  
If you remove the @ and replace it by a proper is_dir check, my upvote is yours :) Bonus points for checking whether the parent directory is_writable() for a watertight helper function. – Pekka 웃 Feb 20 '10 at 19:35
Using @ to suppress the errors is a performance hit. Better to check it doesn't already exist like Gumbo – Simon Feb 20 '10 at 19:36
Okay, removed the error suppression. – AndiDog Feb 20 '10 at 19:38
1  
Regardless of error suppression, I'm inclined to -1 for the first example. The second is so much better that the first is pointless. – Justin Johnson Feb 20 '10 at 19:42
This is difficult to read code just for the point of putting it on 1 line. The accepted answer is much clearer. – MikeKulls Jan 21 at 4:38

Here is the missing piece. You need to pass 'recursive' flag in mkdir call like this:

mkdir('path/to/directory', 0755, true);
share|improve this answer

Something a bit more universal since this comes up on google. While the details are more specific, the title of this question is more universal.

/** 
 * recursively create a long directory path
 */
function createPath($path) {
    if (is_dir($path)) return true;
    $prev_path = substr($path, 0, strrpos($path, '/', -2) + 1 );
    $return = createPath($prev_path);
    return ($return && is_writable($prev_path)) ? mkdir($path) : false;
}

This will take a path, possibly with a long chain of uncreated directories, and keep going up one directory until it gets to an existing directory. Then it will attempt to create the next directory in that directory, and continue till it's created all the directories. It returns true if successful.

Could be improved by providing a stopping level so it just fails if it goes beyond user folder or something and by including permissions.

share|improve this answer
Fantastic code. You saved me. +1 for this. – pixelngrain Feb 13 at 18:14
This is a better answer. +1 – Talvi Watia Mar 28 at 16:22
if (!is_dir('path_directory')) {
    @mkdir('path_directory');
}
share|improve this answer
Error suppression? Why? – canadiancreed May 8 at 18:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.