what web technologies are available today for downloading many files at once (or very easily) ?
SOLUTION A
making an archive (compressed or not) of those files.
This is the solution used by HFS 2, and Gmail.
Pros
- compatible with every browser
- sub-folders supported
Cons
- Files need to be unpacked
SOLUTION B
via javascript open new windows pointing to those files. (never saw it, just came now to my mind)
Pros
- files are ready for usage
Cons
- some browsers could deny these new windows (to verify)
- the user will be prompted for every file on the location to be saved (to verify)
- sub-folders are not supported
anything else?
i would say solution A is much better than B.
It's not easy to program a lightweight version anyway (as i did with TAR archives in HFS 2).