Get folder detail
This method is used to get folder detail by the path which can access the folder.
Syntax
Example
import { getFilesListByFolder } from "@eueno/lib-browser";
const getFolderDetail = async () => {
const projectId = “112”;
const path = “Folder1/Folder2”;
const res = await getFilesListByFolder(projectId, path);
console.log(res);
};{
"msg": "success",
"data": {
"folders": [
"Folder3"
],
"files": []
},
"options": {
"totalItem": 1
}
}Last updated