suppose I have a root level notebook named “IndianYoga”
how to find out the below info of that notebook?
number of notes within that notebook
number of sub-notebooks within that notebook
number of images linked by all notes within that notebook and all its sub-notebooks
number of documents linked by all notes within that notebook and all its sub-notebooks
Two ready to go plugins that come to mind are
and
Status bar item with vault statistics such as number of notes, files, attachments, and links. - GitHub - bkyle/obsidian-vault-statistics-plugin: Status bar item with vault statistics such as number...
If not a plugin like the above (there are most likely more), you’ll need to dive into Dataview and writing your own queries. One example that seems relevant:
Folders are used within Obsidian, but there is not any metadata related to them, and you can’t link to a folder directly. As such, your request is kind of hard to fulfill. There are two different approaches which can be taken to address this kind of issue.
Using something like dataviewjs, you can use javascript and code scripts to scan the file system manually, and present a list of the folders. However, these will not be linkable in any sense.
Another approach would be to list all notes under…