0 Pluspunkte 0 Minuspunkte

Wenn ich ein Byte Array via HTTP heruntergeladen habe

byte[] contentBytes = response.Content.ReadAsByteArrayAsync().Result;

Wie speichere ich das dann in einer Datei auf der Festplatte?

von  

1 Antwort

0 Pluspunkte 0 Minuspunkte

Mit der File.WriteAllBytes Methode aus dem Namespace System.IO.

byte[] contentBytes = response.Content.ReadAsByteArrayAsync().Result;
File.WriteAllBytes("filename.zip", contentBytes);

von