How can i test if a directory already exist and if not create one in PHP?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
| show 4 more comments |
|
Try this:
Edit: to create the directory afterwards, call
|
|||||||||||||||||
|
|
Try this:
If you want the complete path the be created (if not present), set recusive parameter to true. See documentation of mkdir for more information. |
|||
|
|
|
To expand on the answer above based on the questioner's comments:
You need to use |
|||
|
|
|
Use This: if(file_exists("Directory path") && is_dir("Directory path")) { //Your Code; } |
|||
|
|
is_dir? – Felix Kling Jan 22 '10 at 14:21