From 237dd16cac5d5ef3989edc8b04d9317944e7e30e Mon Sep 17 00:00:00 2001 From: Ooker Date: Tue, 22 Feb 2022 22:32:52 +0700 Subject: [PATCH] difference between getBasePath, getFullPath, getRealPath, getFullRealPath --- docs/api/interfaces/DataAdapter.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/api/interfaces/DataAdapter.md b/docs/api/interfaces/DataAdapter.md index 206f0658..e617d8df 100644 --- a/docs/api/interfaces/DataAdapter.md +++ b/docs/api/interfaces/DataAdapter.md @@ -1,5 +1,4 @@ # DataAdapter - ## Methods ### getName @@ -57,6 +56,7 @@ append: (normalizedPath: string, data: string, options?: DataWriteOptions) => Pr ``` ### getResourcePath +To learn what is the different between `getBasePath`, `getFullPath`, `getRealPath`, `getFullRealPath`, visit [this forum thread](https://forum.obsidian.md/t/what-are-the-differences-between-these-adapter-methods-getbasepath-getfullpath-getrealpath-getfullrealpath/32622?u=ooker) ```ts getResourcePath: (normalizedPath: string) => string @@ -103,3 +103,4 @@ rename: (normalizedPath: string, normalizedNewPath: string) => Promise ```ts copy: (normalizedPath: string, normalizedNewPath: string) => Promise ``` +