FileUploadall()

Manages the uploading of all files in a form. Returns a list of all the files uploaded

Usage

ARRAY = FileUploadall( destination, nameconflict, accept, uri )
Argument Summary
destination local destination of where the file will be uploaded to
nameconflict what to do if a file name already exists. Valid values: error/skip/overwrite/makeunique [optional]
accept the list of mime types that will be accepted [optional]
uri is the destination expressed as a real path or a URI, default to false [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

FileUploadall(
   destination=?, 
   nameconflict=?, 
   accept=?, 
   uri=?
);

Supports passing parameters as a structure using ArgumentCollection:

FileUploadall( ArgumentCollection={
   destination : ?, 
   nameconflict : ?, 
   accept : ?, 
   uri : ?
} );