Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit 5c254eb

Browse files
hacdiasdaviddias
authored andcommitted
feat: add files/flush (#643)
* add flush * add test and readme
1 parent 0ef587a commit 5c254eb

File tree

4 files changed

+18
-0
lines changed

4 files changed

+18
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@ $ ipfs config --json API.HTTPHeaders.Access-Control-Allow-Methods "[\"PUT\", \"P
169169
- [`ipfs.files.get(hash, [callback])`](https://github.com/ipfs/interface-ipfs-core/tree/master/SPEC/FILES.md#get)
170170
- alias to `ipfs.get`
171171
- `ipfs.ls`
172+
- `ipfs.files.flush(path, [callback])`
172173
- mfs (mutable file system) specific:
173174
- `ipfs.files.cp`
174175
- `ipfs.files.ls`

src/files/flush.js

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
'use strict'
2+
3+
const promisify = require('promisify-es6')
4+
5+
module.exports = (send) => {
6+
return promisify((args, callback) => {
7+
return send({
8+
path: 'files/flush',
9+
args: args
10+
}, callback)
11+
})
12+
}

src/files/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ module.exports = (arg) => {
1515
get: require('./get')(send),
1616
getReadableStream: require('./get-readable-stream')(send),
1717
getPullStream: require('./get-pull-stream')(send),
18+
flush: require('./flush')(send),
1819

1920
// Specific to MFS (for now)
2021
cp: require('./cp')(send),

test/files.spec.js

+4
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,10 @@ describe('.files (the MFS API part)', function () {
200200
ipfs.files.mkdir('/test-folder', done)
201201
})
202202

203+
it('files.flush', (done) => {
204+
ipfs.files.flush('/', done)
205+
})
206+
203207
it('files.cp', (done) => {
204208
ipfs.files.cp([
205209
'/ipfs/Qma4hjFTnCasJ8PVp3mZbZK5g2vGDT4LByLJ7m8ciyRFZP',

0 commit comments

Comments
 (0)