FileWriteAllBytes Method (String, Byte) |
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.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public static void WriteAllBytes(
string path,
byte[] bytes
)
Public Shared Sub WriteAllBytes (
path As String,
bytes As Byte()
)
public:
static void WriteAllBytes(
String^ path,
array<unsigned char>^ bytes
)
static member WriteAllBytes :
path : string *
bytes : byte[] -> unit
Parameters
- path
- Type: SystemString
The file to write to. - bytes
- Type: SystemByte
The bytes to write to the file.
See Also