security.Base64.SaveBinary

Decodes the given base64 string and writes the data to a file.

Syntax

security.Base64.SaveBinary(
   path STRING,
   base64Data STRING )
  1. path defines the path to the binary file.
  2. base64Data defines base64 string to be written.

Usage

Decodes the given Base64 string and writes the binary data to the file defined by path.

This method can be used to save data from a network on the disk.

In case of error, the method throws an exception and sets the status variable. Depending on the error, a human-readable description of the problem is available in the sqlca.sqlerrm register. See Error handling in GWS calls (status).