Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I tried to create a file like this:

using (File.Create("somefile"))
{
   //nothing here...
};

and it threw "The process cannot access the file because it is being used by another process". It happened only once. How is this possible at all? How can another process use a file that is not existing yet? ;D Or there is something I don't know\understand?

share|improve this question
1  
possibly because of your own code. you ran it once before. so the second time has have that error – Paul Dinh Sep 24 '12 at 11:59
Without additional information this is hard to answer. The file might already exist, or some "anti"-virus software interfered. – CodesInChaos Sep 24 '12 at 11:59

closed as too localized by CodesInChaos, Henk Holterman, Lucifer, Eitan T, skolima Sep 24 '12 at 12:41

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

up vote 2 down vote accepted

If the file with the name already exists File.Create tries to overwrite it. If the existing file is indeed used by another process, you are getting that exception.

share|improve this answer
In addition to Daniel's answer, it's always good practice to check for the existence of a file before creating it and deciding whether you want to overwrite it or not. Use File.Exists (msdn.microsoft.com/en-us/library/system.io.file.exists.aspx) and then FileOptions on the Create method (msdn.microsoft.com/en-us/library/system.io.fileoptions.aspx). – gfyans Sep 24 '12 at 12:00

Not the answer you're looking for? Browse other questions tagged or ask your own question.