How to get list of all document libraries from sharepoint site programatically
I am using below code which gives me both list & document library; but I am trying to get list of only document libraries. Please help me how to differentiate list & document library programatically using(SPSite oSite = new SPSite("https://server/site")) { using (SPWeb oWeb = oSite.OpenWeb()) { SPListCollection oLists = oWeb.Lists; foreach (SPList olist in oLists) { Response.Write(olist.Title+"<br>"); } } } Jignesh Rajput See this Post Try this ways : using(SPSite oSite = new SPSite("https://server/site")) { using (SPWeb oWeb = oSite.OpenWeb()) { SPListCollection docLibraryColl = oWeb