Created
May 22, 2014 08:55
-
-
Save tianhonghui/d9a9711a3f2c2819a1a1 to your computer and use it in GitHub Desktop.
write bytes to file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var file = await Windows.Storage.ApplicationData.Current.LocalFolder.CreateFileAsync("MyWav.wav", Windows.Storage.CreationCollisionOption.ReplaceExisting); | |
await Windows.Storage.FileIO.WriteBytesAsync(file, buffer); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment