SharePoint 2010 get automatically an icon for your file

Well, i used it for a result which comes from search, but you also can use it for every kind of stuff. Each time you have a file from SharePoint in your result set and you would like to provide an icon for the type of document, e.g. html, word, excel, pdf or something like this, you can use the built-in function of SharePoint. You do not need to code it from scratch.

It is really simple as you can see

[sourcecode language=”csharp”]

protected string getIconUrl(string itemUrl)
{
string iconUrl = string.Empty;

iconUrl = “/_layouts/images/” + SPUtility.MapToIcon(SPContext.Current.Web, itemUrl, string.Empty, IconSize.Size16);
return iconUrl;
}

[/sourcecode]

The trick is done by SPUtility.MapToIcon

Try it and enjoy creating icons next to your files without having much to do.

..:: I LIKE SHAREPOINT ::..

The article or information provided here represents completely my own personal view & thought. It is recommended to test the content or scripts of the site in the lab, before making use in the production environment & use it completely at your own risk. The articles, scripts, suggestions or tricks published on the site are provided AS-IS with no warranties or guarantees and confers no rights.

About Karsten Schneider 312 Articles
Consultant for Microsoft 365 Applications with a strong focus in Teams, SharePoint Online, OneDrive for Business as well as PowerPlatform with PowerApps, Flow and PowerBI. I provide Workshops for Governance & Security in Office 365 and Development of Solutions in the area of Collaboration and Teamwork based on Microsoft 365 and Azure Cloud Solutions. In his free time he tries to collect tipps and worthy experience in this blog.

1 Trackback / Pingback

  1. Magical SPUtility – A Hidden Jewel for SharePoint Custom Development | Nik Patel's SharePoint World

Leave a Reply

Your email address will not be published.


*