In wijfileexplorer, by default, the file explorer displays all the files and folders. However, a user you can customize the type of files to be displayed by using the searchPatterns option.
Complete the following steps:
<body>
tags of the page, just after @RenderBody():
<div id="fileexplorer" style="width:750px;height:350px"></div>
<script type="text/javascript">
$(document).ready(function () {
$("#fileexplorer").wijfileexplorer({
actionUri: "fileexplorer.ashx",
viewPaths: ["~/Content/FileExplorer/Example"],
EnableCopy: false,
EnableOpenFile: false,
EnableCreateNewFolder: false
});
});
</script>