Skip to content

Instantly share code, notes, and snippets.

@beginor
Created November 7, 2014 02:25
Show Gist options
  • Select an option

  • Save beginor/39937a2981fc7e870f87 to your computer and use it in GitHub Desktop.

Select an option

Save beginor/39937a2981fc7e870f87 to your computer and use it in GitHub Desktop.
Open a file used by another process.
using (var fs = new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.ReadWrite))
using (var sr = new StreamReader(fs, Encoding.Default)) {
// read the stream
//...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment