string WriteFileDataBase64(string filePath, string base64Data, bool append)
Writes base-64 encoded data to a file.
Security
Trust Level Required: Full Trust
Parameters
Name | Description |
filePath | The path to the file to write. |
base64Data | The data to write, where each byte is base-64 encoded. |
append | True to append to the end of the file, false to overwrite the file. |
Return
A JSON string where Bool indicates if the function succeeded and Str is an error message on failure.