jQuery fileupload 同时上传目录和文件

jQuery fileupload to upload both directories and files

我想知道是否有任何方法可以使用 jQuery fileupload 来上传目录和文件。我在文档中看到可以使用此输入类型上传目录

<input type="file" name="files[]" multiple directory webkitdirectory mozdirectory>

但是它说

It is also possible to allow selecting a folder (instead of files) via the file input element by adding browser-vendor specific "directory" attributes

"instead of files" 部分对我的使用来说非常烦人。有什么想法吗?

上传器不支持文件夹和文件,只支持文件夹,或只支持文件。如果您想让您的用户上传整个目录,使用 ZIP 文件可能会很好。