references:joomla.framework:filesystem:jfolder-existsexists
This is a wrapper for the standard PHP file_exists function. It returns true if the folder exists, false otherwise. Syntaxboolean exists ( $path )
ExamplesExample jimport( 'joomla.filesystem.folder' ); if (JFolder::exists( 'test1' )) { echo "Folder exists!"; } else { echo "Folder does not exist!"; } might produce: Results Folder exists! Discussion |


