Skip to content

Instantly share code, notes, and snippets.

@Nico-Duduf
Created March 25, 2020 14:55
Show Gist options
  • Save Nico-Duduf/64ab5b9dd2cc40aca042ef16d16293a1 to your computer and use it in GitHub Desktop.
Save Nico-Duduf/64ab5b9dd2cc40aca042ef16d16293a1 to your computer and use it in GitHub Desktop.
// la chaine de caractères est dans une variable
binAsString;
var file = new File('appData/path/to/file.png');
file.encoding = 'BINARY';
if (file.open('w'))
{
success = file.write(binAsString);
file.close();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment