Запись на файл
Но есть файли каторые во время записи
FileStream filewrite = new FileStream(newPath,FileMode.OpenOrCreate,FileAccess.ReadWrite);
StreamWriter write = new StreamWriter(filewrite);
write.Write(str);
write.Flush();
на строке write.Flush();
дает такой error
An unhandled exception of type 'System.ArgumentException' occurred in mscorlib.dll
Additional information: Found a low surrogate char without a preceding high surrogate at index: 493. The input may not be in this encoding, or may not contain valid Unicode (UTF-16) characters.
из чего это может бить.
Измени кодировку при помощи объекта System.Text.Encoding:)