Absolue-Necessite/Notes/test.md

10 lines
202 B
Markdown
Raw Normal View History

2023-03-15 21:32:56 +00:00
```dataviewjs
function getVaultPath(app: App){
let adapter = app.vault.adapter;
if (adapter instanceof FileSystemAdapter){
return adapter.getBasePath();
}
return null;
}
console.log(getVaultPath());
```