Hiding file path from search results

With this query I can list all the files in a folder:

```query
path:($Reading Files/Articles/000 Inbox) 
This works fine but the file path is listed with each file in the folder.
Is there a clever way to hide the file path?

Thank you

Would a dataview query work for you?

```dataview
LIST 
FROM "your/path/to/folder"
SORT file.name asc
```

Angel

1 Like

I should have added that the folder has pdf files, not md files. It seems that dataview only recognizes markdown files.

But I appreciate the reply.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.