Base64 Encoding된 텍스트를 Decoding하여 파일로 저장하는 API이다.
| Parameters | Type | Description |
|---|---|---|
| strEncText | STRING | Encoding된 텍스트 |
| strDecFilePath | STRING | Decoding한 후 저장할 파일 절대 경로 |
| Type | Description |
|---|---|
| BOOL | 성공/실패 여부 |
function btn_on_mouseup()
{
var strEncText = "BASE64EncodedText";
var strDecFilePath = fieldDecodePath.gettext();
factory.base64decodeex(strEncText, strDecFilePath);
}