FOF30\Platform\Joomla\Filesystem::folderExists PHP Méthode

folderExists() public méthode

Wrapper for the standard file_exists function
public folderExists ( string $path ) : boolean
$path string Folder name relative to installation dir
Résultat boolean True if path is a folder
    public function folderExists($path)
    {
        try {
            return \JFolder::exists($path);
        } catch (\Exception $e) {
            return false;
        }
    }