Download PHP script - automatically create a folder

Possible duplicate:
Check if directory exists (PHP)

Message deleted - message deleted - message deleted - message deleted

-3
source share
3 answers

Use file_exists to check if a folder or tree exists, then use PHP mkdir .

0
source

Check if there is a directory .

If not, create one .

Where is the problem?

0
source

The is_dir function checks if a folder exists and mkdir will create a folder if you need to.

0
source

All Articles