文件夹上传

Stream上传插件(文件夹上传支持)

与世无争的帅哥 提交于 2019-11-29 13:32:02
HTML5文件夹上传,目前支持的浏览器有Chrome21+, Opera15+。是实现文件夹上传的功能时,主要参考两段JS文件,地址: http://protonet.github.io/plupload/src/javascript/plupload.html5.js (是关于拖拽上传文件的巧妙处理方式), http://html5-demos.appspot.com/static/html5storage/demos/upload_directory/index.html (通过文件选择按钮上传文件夹,需要翻墙)。 主要是拖拽处理的方式复杂一些,贴出 http://protonet.github.io/plupload/src/javascript/plupload.html5.js 的处理方式: function walkFileSystem(directory, callback, error) { if (!callback.pending) { callback.pending = 0; } if (!callback.files) { callback.files = []; } callback.pending++; var reader = directory.createReader(), relativePath = directory.fullPath