imageUploaderFlash.folderProcessingMode Property HTML5/Flash Uploader JavaScript

Supported technologies:

Configures the folder uploading functionality.

Syntax

JavaScript Initialize
$au.imageUploaderFlash({
    //...other params...
    folderProcessingMode: "None",
    //...other params...
})
Get/Set Value at Runtime
$au.imageUploaderFlash('uploaderID').folderProcessingMode(value);
value = $au.imageUploaderFlash('uploaderID').folderProcessingMode();

Property Value

Type: String

The following values are supported:

ValueDescription
NoneNo folders can be selected or added through drag-and-drop. The user can add individual files.
MixedBoth files and folders are allowed to be added.
FolderOnly 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".

Remarks

HTML5 Uploader has a limited support of this functionality:

  • It works only in Chrome, Windows and Mac version.
  • If you add files using drag-and-drop, it adds only 100 files per folder. This limitation is not applied for the Open Folder dialog.

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.

See Also

Reference

Manual