10 lines
No EOL
202 B
Markdown
10 lines
No EOL
202 B
Markdown
```dataviewjs
|
|
function getVaultPath(app: App){
|
|
let adapter = app.vault.adapter;
|
|
if (adapter instanceof FileSystemAdapter){
|
|
return adapter.getBasePath();
|
|
}
|
|
return null;
|
|
}
|
|
console.log(getVaultPath());
|
|
``` |