I'm using the localized FileManager and need to programmatically set the folder path based on inputed text. They always share the same root, set in Controllers/FileManagerController.cs. However, this folder is extremely large and it seems it loads this entire root folder and takes a while to load. Is there any way to skip loading this entire folder, and just load the subfolder specified in path like following:
var filemanagerInstance =
new ej.filemanager.FileManager({
ajaxSettings: {
url: hostUrl + 'FileManager/FileOperations',
getImageUrl: hostUrl + 'FileManager/GetImage',
uploadUrl: hostUrl + 'FileManager/Upload',
downloadUrl: hostUrl + 'FileManager/Download'
},
view: "Details",
allowDragAndDrop: true,
path: "/" + ordernum.toString()
});