Skip to content

Instantly share code, notes, and snippets.

@elmo61
Created January 2, 2018 17:16
Show Gist options
  • Select an option

  • Save elmo61/1df3d40e68ffb4dde0a948e386c63240 to your computer and use it in GitHub Desktop.

Select an option

Save elmo61/1df3d40e68ffb4dde0a948e386c63240 to your computer and use it in GitHub Desktop.
string path = "c:/folder/file.jpg";
using(StreamWriter sw = File.AppendText(path))
{
sw.WriteLine("write some text");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment