List files of a certain folder in a pane

It would be amazing if a plugin would list all the files of a certain folder in a pane.

1 Like

I like what you are getting at.

I was going in a similar direction with this request: Global vault note that includes everything

Thanks.

Right now there are two plugins that do that
You can use this:

```ccard
type: folder_brief_live
```
Cant recall which plugin it uses tho

The other one is dataview:

```dataview
list from [folder address relative to the vault root]
```

I would like to automate it more by making it to get the url from templater but unfortunately there is not a internal command for getting current folder url relative to the vault root. It is not hard to make a custom command in templater but making the code in powershell is not convenient for me.

I am hoping someone make it and share it with use tbh

As Archie mentioned, the dataview plugin can to this. Here’s my file table:

```dataview
table file.ctime as creation, file.mtime as modification, file.size / 1000 as size_kB, file.path from "" 
sort file.mtime desc
```

For a certain folder you can change from "" to from "your folder"

1 Like

Unfortunately this only lists markdown files, not all files.

anyone knows what is the plugin that allows you to do

  \```ccard
  \type: folder_brief_live
  \```
1 Like

You can also use my folder note plugin: GitHub - aidenlx/alx-folder-note: Add description, summary, and more info to folders with folder notes

Is there a way to list all files in a directory then, and not only notes?