mirror of
https://github.com/sigoden/dufs.git
synced 2026-04-08 16:49:02 +03:00
[GH-ISSUE #309] Serving all files from directory unzipped #165
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ghost on GitHub (Dec 4, 2023).
Original GitHub issue: https://github.com/sigoden/dufs/issues/309
Im not sure if this is already possible, but downloading a folder contents without zipping.
basically, im currently quering for a list of directory items before downloading them concurrently, given that im storing only a few items in each directory at approximately 50kb, its likely not providing much of a boost to zip/send/unzip. I'm wondering if its possible to forego the list query and just download all from one request
@sigoden commented on GitHub (Dec 6, 2023):
I don't understand what you mean.
Can you explain your needs with examples?
@timlagrande
@ghost commented on GitHub (Dec 6, 2023):
I'm wondering if its possible to request all items in a directory unzipped, in one request. The current functionality suits my needs but I'm wondering how flexibly requests for a file are, for example, requesting a fileset via a path like /documents/*.pdf vs /documents/taxes.pdf
@sigoden commented on GitHub (Dec 6, 2023):
There is no word called "directory unzipped".
Do you mean to download files that match the search
@ghost commented on GitHub (Dec 6, 2023):
Yes, currently you can download a zipped copy of the directory, I was wondering if individual files could be served "unzipped" or "uncompressed" or "not in zip format" in one request
@sigoden commented on GitHub (Dec 6, 2023):
You want to manually select multiple files in the directory, and then download them in batches, with one file per download task.
Is this how I understand it?
@ghost commented on GitHub (Dec 6, 2023):
Sure, but i was wondering if thats possible to do via one request, rather than concurrent requests
@sigoden commented on GitHub (Dec 6, 2023):
No, the browser only supports downloading one file if you click on one link.
@ghost commented on GitHub (Dec 6, 2023):
Thanks