When navigating to your site wwwroot in Kudu Diagnostic Console on Azure by default you can only see the first 199 directories and files. For large directories with more files, it's a problem because it hides important files that you would like to browse. Luckily it is easy to manipulate the number of files to show: 1. Install LocalStorage Manager for Chrome 2. Open LocalStorage Manager by clicking on its shortcut on the top right corner 3. Click "Add" to add new variable "maxViewItems" and click OK 4. In the next window type in the number of items you want…
Read MoreAbout
I'm Izabela Wlodarska and I'm a passionate solutions architect mostly focused on .NET, Sitecore and Azure.
I love constantly improving my skills and sharing my knowledge with others.
I hope that reading this blog will help you to become a better developer. Welcome on board and let's learn together!
Latest posts
- Getting started with Unicorn serialization for Sitecore Experience Accelerator (SXA) – part 2
- Setting custom field as Browser Title in SXA
- Getting started with Unicorn serialization for Sitecore – Part 1
- Azure tricks – How to show all files in Kudu Diagnostic Console, not just the first 199 items
- Elegant one-line way to use TryParse
Tags
Comments
Awesome !
This is still great, use it all the time! Only thing that's changed that can make this one-liner more elegant…
This is an excellent article, thanks for posting it! I'm looking to set up something very similar. In the time…

Yes, you have two different configurations: Content-Data and Content-Data-Configuration which are trying to serialize the same item (/sitecore/content/Data/Configuration). This is…
thank you, I use this construction: .int value= int.TryParse(valueToParseFromString, out value) ? value: 0;.