I'm coding in C# here and VS is saying the file is in use by another process when I try to read it with a StreamReader
after creating it File.Create(path)
.
Asked
Active
Viewed 32 times
0
-
2Some code of your implementation would help us to provide better solution. – Chetan Feb 25 '17 at 19:50
-
2`File.Create` returns a stream. If you try to use another stream to access file that will happen. But since no example was provided we cannot tell for sure – Nkosi Feb 25 '17 at 19:53