Hi I have a file browser and works great.
I am now trying to select a folder and store all the files from that directory in an array with out actually opening the folder.
I currently do a check to see if its a directory or file.
var selectedItems = $find("RadFileExplorer1").get_selectedItems();
for (var i = 0; i < selectedItems.length; i++)
{
var dir = selectedItems[i].isDirectory();
if (dir == true)
{
}
else if (dir == false)
{
}
I am just stuck how to get the directory file list without opening the folder. My overall goal is to be able to store a whole folder structure.
any help would be appreciated,