I want to check if there is a directory exist or not before uploading a file.
If the directory does not exist return FALSE.
Does is_dir do the work?
|
|
is_dir() well check if the first argument is a directory and is_file() will check if the first argument is a file. They both return true if the dir/file exists, and false if not. |
|||
|
|
|
For example, if you wanted to check that "etc/data/images/" is a directory you could use:
|
|||
|
|