@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…
@paul-hammant commented on GitHub (Dec 16, 2023):
Any chance of some addition hints as to rendered endpoints in the "Listening on:" section as dufs launches?
@sigoden commented on GitHub (Dec 6, 2023):
There is no word called "directory unzipped".
for example, requesting a fileset via a path like /documents/*.pdf…
@sigoden commented on GitHub (Dec 2, 2023):
If only one compression format is supported, zip is the only choice. Because zip is the most versatile, the evidence…
@sigoden commented on GitHub (Dec 16, 2023):
Can you give an example? @paul-hammant
@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…
@abe1242 commented on GitHub (Dec 2, 2023):
The compression algorithm won't have a huge impact on download times. The biggest impact has always been bandwidth. …
@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…
@ghost commented on GitHub (Dec 6, 2023):
Sure, but i was wondering if thats possible to do via one request, rather than concurrent requests
@abe1242 commented on GitHub (Dec 2, 2023):
My phone has the computing power of a potato so that explains the slow speed of zip. I guess I'm gonna have to stick…
@sigoden commented on GitHub (Dec 14, 2023):
#319 supports --compress: none which is similar to tar and is extremely fast. you may try it.
@sigoden commented on GitHub (Dec 6, 2023):
No, the browser only supports downloading one file if you click on one link.
@abe1242 commented on GitHub (Dec 17, 2023):
Tried it on my PC and it works really well. Getting 170M+ speeds whereas with compression it is 20M. Haven't tried…
@ghost commented on GitHub (Dec 6, 2023):
Thanks