Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- FileStream stream = new FileStream("/home/cina/Plocha/ahoj.txt", FileMode.Append);
- string text = "text co chces dal zapsat";
- byte[] text2 = System.Text.Encoding.UTF8.GetBytes(text);
- stream.Write(text2, 0, text2.Length);
- stream.Close();
Add Comment
Please, Sign In to add comment