File Manager - data default path

Hi,
any one can tell me where can i change the default data path where file manager read folders and files?
thanks

Hi,

You can set “defaultSelection” in FileManager configuration - the method that returns the id of selected folder. By default, FileManager shows the first folder ( getFirstChildId method):

webix.ui({
    view:"filemanager",
    id: "myFileManager",
    defaultSelection: function(){
	 return this.getFirstChildId(0);
    }
});