ClientFile.downloadBinaryFrom(message)

Downloads a file as binary from the Client Browser Side. For example: // /tmp/clientFile is the existing file on the machine in which the Browser is running. myClientFileD = ClientFile(sourcePath : "C:/tmp/clientFile") binaryB = downloadBinaryFrom(myClientFileD, message :"Binary File: " + myClientFileD.name) display ("Uploaded Binary File Name: " + myClientFileD.fullName) binaryBcontent = String(binaryB, encoding : "UTF8") display ("Uploaded file content: " + binaryBcontent)

Arguments:

Name Type Description Mode
message String message to show to the user before the action is executed (default: description of operation to perform) in