Aurigma Image Uploader 6.5 Dual
ImageUploader.AllowFolderUpload Property
Switch that specifies whether it is possible to upload not only separate files, but also entire folders.
Syntax
Initialize
JavaScript
<script type="text/javascript" src="iuembed.js"> </script> <script type="text/javascript"> var iu = new ImageUploaderWriter("ImageUploaderID", 610, 500); //...other params... iu.addParam("AllowFolderUpload", "false"); //...other params... iu.writeHtml(); </script>
Get/Set Value in Runtime
JavaScript
getImageUploader("ImageUploaderID").setAllowFolderUpload(value);
value = getImageUploader("ImageUploaderID").getAllowFolderUpload();Property Value
A boolean value (true or false). If true, the user can add folders to upload list. Otherwise only files can be added.
Default value is "false".
Remarks
When the uploaded folders contain subfolders, you probably would like to restore the folder structure on the server. To do it, you can parse the FileName_N. It contains not just the file name, but the relative path (relatively the folder which is being uploaded, including the name of this folder). For example, if the user sends a MyDocuments folder, which contains a MyPhotos subfolder; all files inside this subfolder will be received on a server and their FileName_i POST fields will contain MyDocuments\MyPhotos\filename values.