Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Windows.File.WriteAllBytes

static function WriteAllBytes(path: string, bytes: byte[]): void;
static void WriteAllBytes(string path, byte[] bytes);
static def WriteAllBytes(path as string, bytes as byte[]) as void

Parameters

pathThe file to write to.
bytesThe bytes to write to the file.

Description

Creates a new file, writes the specified byte array to the file, and then closes the file. If the target file already exists, it is overwritten.