gets an array of folder IDs in the path
id | string | optional, the ID of the selected folder |
array | an array of folder IDs |
var pathIds = fmanager.getPath();
// or
var pathIds = fmanager.getPath(id);
If called without the id parameter, the method returns the current path of File Manager. If you pass the ID of a folder, the method will return the path to the folder.
Back to top