FOF30\Platform\Joomla\Filesystem::folderExists PHP Метод

folderExists() публичный Метод

Wrapper for the standard file_exists function
public folderExists ( string $path ) : boolean
$path string Folder name relative to installation dir
Результат boolean True if path is a folder
    public function folderExists($path)
    {
        try {
            return \JFolder::exists($path);
        } catch (\Exception $e) {
            return false;
        }
    }