I am not sure how to go about doing this in an angular way.
I would like to implement a file explorer similar to the following: example 1 or example 2
features it should implement are:
- show files and folders in current directory
- ability to click on folders to expand them (like in example)
So what i have at the moment is a list of files and folders as an array of paths. This is generated by an onDrop or onChange event (from drag and drop or input).
Any advice on how to implement this?