|
2 | 2 |
|
3 | 3 | > The files API enables users to use the File System abstraction of IPFS. There are two Files API, one at the top level, the original `add`, `cat`, `get` and `ls`, and another behind the [`files`, also known as MFS](https://github.com/ipfs/specs/issues/98). [We are currently going through a revamping process of this APIs to make them more user friendly](https://github.com/ipfs/interface-ipfs-core/issues/284).
|
4 | 4 |
|
5 |
| -- [add](#add) |
6 |
| -- [addReadableStream](#addreadablestream) |
7 |
| -- [addPullStream](#addpullstream) |
8 |
| -- [addFromFs](#addFromFs) |
9 |
| -- [addFromUrl](#addFromFs) |
10 |
| -- [cat](#cat) |
11 |
| -- [catReadableStream](#filescatreadablestream) |
12 |
| -- [catPullStream](#filescatpullstream) |
13 |
| -- [get](#filesget) |
14 |
| -- [getReadableStream](#filesgetreadablestream) |
15 |
| -- [getPullStream](#filesgetpullstream) |
16 |
| -- [ls](#ls) |
17 |
| -- [lsReadableStream](#lsreadablestream) |
18 |
| -- [lsPullStream](#lspullstream) |
| 5 | +- The Regular (top level) API for add, cat, get and ls Files on IPFS |
| 6 | + - [add](#add) |
| 7 | + - [addReadableStream](#addreadablestream) |
| 8 | + - [addPullStream](#addpullstream) |
| 9 | + - [addFromFs](#addFromFs) |
| 10 | + - [addFromUrl](#addFromFs) |
| 11 | + - [cat](#cat) |
| 12 | + - [catReadableStream](#catreadablestream) |
| 13 | + - [catPullStream](#catpullstream) |
| 14 | + - [get](#get) |
| 15 | + - [getReadableStream](#getreadablestream) |
| 16 | + - [getPullStream](#getpullstream) |
| 17 | + - [ls](#ls) |
| 18 | + - [lsReadableStream](#lsreadablestream) |
| 19 | + - [lsPullStream](#lspullstream) |
19 | 20 | - The Files API, aka MFS (Mutable File System)
|
20 | 21 | - [files.cp](#filescp)
|
21 | 22 | - [files.flush](#filesflush)
|
@@ -174,7 +175,7 @@ stream.end()
|
174 | 175 |
|
175 | 176 | A great source of [examples][] can be found in the tests for this API.
|
176 | 177 |
|
177 |
| -#### `files.addPullStream` |
| 178 | +#### `addPullStream` |
178 | 179 |
|
179 | 180 | > Add files and data to IPFS using a [Pull Stream][ps].
|
180 | 181 |
|
|
0 commit comments