If I am trying to delete a file, but at the same time another process is performing a File.Exists(...) on the same file, will that potentially lock the file and cause my process to fail?
|
feedback
|
|
No, File.Exist() only checks that the file in question is on the file system at the specified path. It does not access the file data or headers in anyway, so it won't put a lock on the file. On a side note, even opening a file won't necessarily lock it. It depends on the access parameters you choose when opening. | |||
|
feedback
|
|
No, File.Exist doesn't lock the file. A great way to see what's happening under the covers, though, is to look through the source code. Pull down the source code for the .Net Framework base class libraries and take a look at what's going on behind the scenes. The System.IO.File class, in particular, has some very interesting defaulted selections for file handling, locking, releasing, etc. In instances like yours, seeing the source of what's happening behind the scenes can make all the difference in terms of how you design your application. Per the link: What can I do with the Shared Source CLI? There is a wealth of programming language technology in the Shared Source CLI. It is likely to be of interest to a wide audience, including:
| |||
|
feedback
|
|
This is an answer to anu - and anyone doing something similar with files. It is pretty vital to access files with a using statement. This ensures you appropriately dispose of your reference to the file.
| |||
|
feedback
|