Represents an collection of all currently selected files.
<inputname="files"id="files"type="file"/><buttonid="getFiles"class="k-button">Show selected files count</button><script>$(document).ready(function(){$("#files").kendoUpload();$("#getFiles").on('click',function(e){
e.preventDefault();var upload =$("#files").data("kendoUpload"),
files = upload.getFiles();alert("You have selected "+ files.length+" files");/* The result can be observed in the DevTools(F12) console of the browser. */console.log(files);})});</script>