UtilitiesWriteArrayToFile Method |
Writes arrBytes to a file, creating the target directory and overwriting if the file exists.
Namespace: FiddlerAssembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax public static void WriteArrayToFile(
string sFilename,
byte[] arrBytes
)
Public Shared Sub WriteArrayToFile (
sFilename As String,
arrBytes As Byte()
)
public:
static void WriteArrayToFile(
String^ sFilename,
array<unsigned char>^ arrBytes
)
Parameters
- sFilename
- Type: SystemString
Path to File to write. - arrBytes
- Type: SystemByte
Bytes to write.
See Also