-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow uploading directories #125
Comments
Also then the filename must be set properly in Suggested fix: (defun basename (pathname)
(first (last (pathname-directory
;; Ensure directory _after_ truenamizing, otherwise if
;; non-directory file exists it may not yield a directory.
(uiop:ensure-directory-pathname
(uiop:ensure-pathname pathname :truenamize t)))))
(defun make-form-data-function (parameters boundary external-format-out)
; ...
(pathname (basename file-source))
;... |
22 tasks
@stassats Friendly ping :) |
I don't see a pull request linked to this. |
See #127. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
At the moment sending a request with a parameter like
fails because
send-content
tries to read the dir.Suggested fix in
send-content
:For context, I'm trying to upload directories to IPFS:
http://docs.ipfs.tech.ipns.localhost:8080/reference/kubo/rpc/#api-v0-add
The text was updated successfully, but these errors were encountered: