Render Archive Folder
GroupDocs.Viewer renders items from the root of the archive by default.
When rendering of a specified folder is required, it can be achieved as shown in the examples below.
using (Viewer viewer = new Viewer("sample.zip"))
{
HtmlViewOptions viewOptions = HtmlViewOptions.ForEmbeddedResources();
viewOptions.ArchiveOptions.Folder = "ThirdFolderWithItems";
viewer.View(viewOptions);
}
More resources
View Archive Files Online
Along with full-featured .NET library we provide simple but powerful free online Apps. View ZIP and TAR files online with GroupDocs Viewer App.
GitHub Examples
You may easily run the code above and see the feature in action in our GitHub examples:
- GroupDocs.Viewer for .NET examples, plugins, and showcase
- GroupDocs.Viewer for Java examples, plugins, and showcase
- Document Viewer for .NET MVC UI Example
- Document Viewer for .NET App WebForms UI Modern Example
- Document Viewer for Java App Dropwizard UI Modern Example
- Document Viewer for Java Spring UI Example