Bugfix: files-rm
- Files-rm is working - Minor fixes to texts
This commit is contained in:
parent
13cd1091fd
commit
00d79f4173
|
@ -5,7 +5,7 @@ CL-IPFS-API²
|
|||
:cl-ipfs-api² is a pretty simple set of IPFS bindings for Common Lisp, using
|
||||
the HTTP API for (almost) everything, except for pubsub (which uses the locally
|
||||
installed go-ipfs program).
|
||||
It uses Dexador, YASON, and UIOP.
|
||||
It uses Drakma, YASON, and UIOP.
|
||||
|
||||
|
||||
————————————————————————————————————————
|
||||
|
|
|
@ -491,13 +491,13 @@
|
|||
(defun files-rm (path &key (recursive nil) (force nil))
|
||||
"Remove a given file.
|
||||
/ipns/docs.ipfs.io/reference/api/http/#api-v0-files-rm"
|
||||
(ipfs-call "files/read" `(("arg" ,source) ("recursive" ,recursive)
|
||||
(ipfs-call "files/rm" `(("arg" ,path) ("recursive" ,recursive)
|
||||
("force" ,force))))
|
||||
|
||||
;; STRING → ALIST || (NIL STRING)
|
||||
(defun files-stat (path)
|
||||
"Remove a given file.
|
||||
/ipns/docs.ipfs.io/reference/api/http/#api-v0-files-rm"
|
||||
"Get file status.
|
||||
/ipns/docs.ipfs.io/reference/api/http/#api-v0-files-stat"
|
||||
(ipfs-call "files/stat" `(("arg" ,path))))
|
||||
|
||||
;; PATHNAME STRING [:NUMBER :BOOLEAN :BOOLEAN :BOOLEAN :NUMBER :BOOLEAN
|
||||
|
|
Ŝarĝante…
Reference in New Issue