> For the complete documentation index, see [llms.txt](https://docs.eueno.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.eueno.io/eueno-libraries/eueno-lib-browser/get-folder-detail.md).

# Get folder detail

Use the method [getFileListByFolder()](/eueno-libraries/eueno-lib-browser/getfileslistbyfolder.md)

## Syntax

The syntax of this method is like the syntax of the method [getFileListByFolder()](/eueno-libraries/eueno-lib-browser/getfileslistbyfolder.md).

## Example

Assuming that we have a path structure like Folder1/Folder2/Folder3 in a project with id 112. The example below shows how to get Folder2 detail.

```javascript
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);
};
```

Response of example:

```javascript
{
    "msg": "success",
    "data": {
        "folders": [
            "Folder3"
        ],
        "files": []
    },
    "options": {
        "totalItem": 1
    }
}
```

The response indicates that Folder2 has totalItem 1 includes: one folder named “Folder3” and no file.
