Skip to content

notePathWithFileExtension()

The notePath() function will return path to the current page, so if the file path in your vault is folder/folder/my cool filename.md this function will return folder/folder.

Here are all the page functions to extract information from the current page the query is running on.

markdown
```qatt
query: |
  SELECT TOP 1 
    notePathWithFileExtension() AS notePathWithFileExtension,
    notePathWithoutFileExtension() AS notePathWithoutFileExtension,
    notePath() AS notePath,
    noteFileName() AS noteFileName
  FROM obsidian_markdown_tasks
template: |
  {{#each result}}
  notePathWithFileExtension: {{notePathWithFileExtension}}
  notePathWithoutFileExtension: {{notePathWithoutFileExtension}}
  notePath: {{notePath}}
  noteFileName: {{noteFileName}}  
  {{/each}}
```