The SharePoint API lacks methods to check for the security group existence. Here is utilities that do the job: public static bool GroupExists( SPGroupCollection groups, string name) { if ( string .IsNullOrEmpty(name) || (name.Length > 255) || (groups
Read More...