Problem Description
I want to create a directory if it does not exist already.
Is using the `is_dir` function enough for that purpose?
if ( !is_dir( $dir ) ) {
mkdir( $dir );
}
Or should I combine `is_dir` with `file_exists`?
if ( !file_exists( $dir ) && !is_dir( $dir ) ) {
mkdir( $dir );
}
AI-Generated Solution
Powered by LMSouq AI · GPT-4.1-mini
Analyzing problem and generating solution…
Was this solution helpful?