Configures the folder uploading functionality.
$au.imageUploaderFlash({ //...other params... folderProcessingMode: "None", //...other params... })Get/Set Value at Runtime
$au.imageUploaderFlash('uploaderID').folderProcessingMode(value); value = $au.imageUploaderFlash('uploaderID').folderProcessingMode();
Type: String
The following values are supported:
Value | Description |
---|---|
None | No folders can be selected or added through drag-and-drop. The user can add individual files. |
Mixed | Both files and folders are allowed to be added. |
Folder | Only folders are allowed to be added. |
It also accepts folder processing modes of Java/ActiveX: Skip which is equal to None and Show/Upload which are equal to Mixed.
Default value is "None".
HTML5 Uploader has a limited support of this functionality:
To provide a compatibility with other browsers it is recommended to use it together with Java/ActiveX uploader as explained in the Uploading Folders with HTML5 Uploader (JavaScript API) article.