Answers for "obsidian write file"

0

obsidian write file

const configPath = this.app.vault.configDir + "/plugins/yourPlugin/data.json";
await this.app.vault.adapter.write(configPath,`
  {
  "test":"This is some JSON"
  }
`);
Posted by: Guest on April-11-2022

Code answers related to "TypeScript"

Browse Popular Code Answers by Language