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
Obsidian plugin. Displays a word count or other statistic for each file, folder and vault in the File Explorer pane.
and
Status bar item with vault statistics such as number of notes, files, attachments, and links.
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…
system
Closed
January 31, 2024, 7:18am
3
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.