Using method: System.IO.File.Create()
After the file gets created, it still remains used by a process, and I can't delete it.
Any idea how I can better create the file, should be a 0byte file, and then somehow close and dispose?
|
JL, You should wrap your call to .Create in a using statement so that the FileStream that .Create returns will be closed properly. IE:
|
|||
|
nikmd23 has the short answer, the long answer is: the As nikmd23 put it, wrapping your
The
|
|||||||||
|
|
The Create method not only creates the file, it opens it and return a FileStream object that you can use to write to the file. You have to close the file after yourself, otherwise it will not be closed before the garbage collector cleans up the FileStream object. The easiest way is to simply close the file using the reference that the Create method returns:
|
|||
|
|
|
You should use nikmd23's answer in almost all cases. If you can't, because you need to pass the For more information on implementing |
|||
|
The "f.Close();" line closing file immediately. If not close manually, Disposing may not close it. |
|||||||||
|
|
See
The |
||||
|
|
using (FileStream fs = File.Create(".."))(not that it should matter once your process has exited)? – Chris S Sep 25 '09 at 14:53Createmethod returns aFileStream. – Cecil Has a Name Sep 25 '09 at 15:09