If another process has an exclusive lock on a file you want, there's pretty much nothing you can do about it, except for forcefully removing all handles to the file, or killing the process, both of which will result in undefined behaviour (by the other program that has the exclusive lock).
You should either
- wait for the other program to finish using the file
- write to another file
- something else that makes sense.
If you're sure that only your code accesses this file, just go back and make sure you close all handles to a file you've previously opened when you're done with it.
If you haven't already done so (we don't see all your code), you need to close off the open file handle from your File.CreateText() call, as it returns a StreamWriter with an open handle to your file.
sw.Close()is, I believe, not needed since you have the StreamWriter in a using block. – Tim Jul 24 '11 at 6:26