Skip to content
This repository was archived by the owner on Jun 14, 2023. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/api/interfaces/DataAdapter.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# DataAdapter

## Methods

### getName
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -103,3 +103,4 @@ rename: (normalizedPath: string, normalizedNewPath: string) => Promise<void>
```ts
copy: (normalizedPath: string, normalizedNewPath: string) => Promise<void>
```