Folder Drop

Directory / Folder Upload

Upload an entire folder by dropping it onto the drop zone or using the folder browse dialog. All files within the directory are uploaded.

📁
Drop a folder here or click to browse a directory
AjaxUploader.create(el, {
  uploadUrl: '/ajaxupload.axd/upload',
  multiple: true,
  autoUpload: true,
  dropTarget: zone,
  webkitdirectory: true,
  onTaskComplete: function(task) {
    log(task.fileName + ' uploaded');
  }
});