When is it okay to check if a file exists? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T11:25:36Z http://stackoverflow.com/feeds/question/673654 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/673654/when-is-it-okay-to-check-if-a-file-exists 15 When is it okay to check if a file exists? Joel Coehoorn 2009-03-23T14:46:30Z 2009-05-08T15:20:57Z <p>File systems are volatile. This means that you can't trust the result of one operation to still be valid for the next one, even if it's the next line of code. You can't just say <code>if (some file exists and I have permissions for it) open the file</code>, and you can't say <code>if (some file does not exist) create the file</code>. There is always the possibility that the result of your <code>if</code> condition will <em>change</em> in between the two parts of your code. The operations are distinct: not atomic.</p> <p>To make matters worse, the nature of the problem means that if you're tempted to make this check, odds are you're already worried or aware that something you don't control is likely to happen to the file. The nature of development environments make this event less likely to happen during your testing and very difficult to reproduce. So not only do you have a bug, but the bug won't show up while testing. </p> <p>Therefore under normal circumstances the best course of action is to not even try to check if a file or directory exists. Instead, put your development time into handling exceptions from the file system. You have to handle these exceptions anyway, so this is a much better use of your resources. I even have a well-voted <a href="http://stackoverflow.com/questions/265953/c-how-can-you-easily-check-if-access-is-denied-for-a-file/265958#265958">answer</a> to this effect in another question.</p> <p>But I'm having some doubts. In .Net, for example, if that's really <em>always</em> true, the <code>.Exists()</code> methods wouldn't be in the API in the first place. Also consider scenarios where you <em>expect</em> your program to need to the create file. The first example that comes to mind is for a desktop application. This application installs a default user-config file to it's home directory, and the first time each user starts the application it copies this file to that user's application data folder. It expects the file not to exist on that first startup. </p> <p>So when is it acceptable to check in advance for the existence (or other attributes, like size and permissions) of a file? Is expecting failure rather than success on the first attempt a good enough rule of thumb?</p> http://stackoverflow.com/questions/673654/when-is-it-okay-to-check-if-a-file-exists/673666#673666 2 Answer by Mitch Wheat for When is it okay to check if a file exists? Mitch Wheat 2009-03-23T14:50:06Z 2009-03-23T15:16:22Z <p>It depends on your requirements, but one way is to try to obtain an <strong>exclusive</strong> open file handle, with some sort of retry mechanism. Once you have that handle, it's going to be hard (or impossible) for another process to delete (or move) that file.</p> <p>I've used code in .NET similiar to the following to obtain an exclusive file handle, where I expect some other process to be possibly writing the file:</p> <pre><code>FileInfo fi = new FileInfo(fullFilePath); int attempts = maxAttempts; do { try { // Asking to open for reading with exclusive access... fs = fi.Open(FileMode.Open, FileAccess.Read, FileShare.None); } // Ignore any errors... catch {} if (fs != null) { break; } else { Thread.Sleep(100); } } while (--attempts &gt; 0); </code></pre> http://stackoverflow.com/questions/673654/when-is-it-okay-to-check-if-a-file-exists/673669#673669 1 Answer by Sunny for When is it okay to check if a file exists? Sunny 2009-03-23T14:50:44Z 2009-03-23T14:50:44Z <p>In *nix environment a well established method for checking if another copy of the program is already running is to create a lock file. So the check for file existence is used to verify this.</p> http://stackoverflow.com/questions/673654/when-is-it-okay-to-check-if-a-file-exists/673675#673675 0 Answer by Paul Tomblin for When is it okay to check if a file exists? Paul Tomblin 2009-03-23T14:51:35Z 2009-03-23T14:51:35Z <p>If you're that concerned about somebody else removing the file, perhaps you should implement some sort of locking system. For instance, I used to work on the code for C-News, a Usenet news server. Since a lot of the things it did could happen asynchronously, it would "lock" a file or a directory by making a temp file, and then hard linking it to a file named "LOCK". If the link failed, it would mean that some other version of the program was writing to that directory, otherwise it was yours and you could do what you like.</p> <p>The nifty thing about this is that most of the program was written in shell and awk, and this was a very portable locking mechanism. Also, the lock file would contain the PID of the owner, so you could look at the existing lock file to see if the owner was still running.</p> http://stackoverflow.com/questions/673654/when-is-it-okay-to-check-if-a-file-exists/673681#673681 0 Answer by sharptooth for When is it okay to check if a file exists? sharptooth 2009-03-23T14:52:17Z 2009-03-23T14:52:17Z <p>We have a diagnostic tool that has to gather a set of files, installer log included. Depending on different conditions the installer log can be in one of two folders. Even worse, there can be different versions of the log in both of these folders. How does the tool find the right one?</p> <p>It's quite simple if you check for existence. If only one is present, grab that file. If two exist, find which has the latest modification time and grab that file. That's just normal way of doing things.</p> http://stackoverflow.com/questions/673654/when-is-it-okay-to-check-if-a-file-exists/673682#673682 0 Answer by casperOne for When is it okay to check if a file exists? casperOne 2009-03-23T14:52:33Z 2009-03-23T14:52:33Z <p>While this is a language-agnostic post, it seems you are talking about .NET. Most systems (.NET and others) have more detailed APIs in order to figure out if the file exists when opening the file.</p> <p>What you should do is make a call to access the file, as it will typically indicate through some sort of error that the file doesn't exist (if it truly doesn't). In .NET, you would have to go through the P/Invoke layer and use the CreateFile API function. If that function returns an error of ERROR_FILE_NOT_FOUND, then you know that the file does not exist. If it returns successfully, then you have a handle that you can use.</p> <p>The point here is that it is a <em>somewhat</em> atomic operation, which ultimately is what you are looking for.</p> <p>Then, with the handle, you can pass it to a FileStream constructor and perform your work on the file.</p> http://stackoverflow.com/questions/673654/when-is-it-okay-to-check-if-a-file-exists/673683#673683 1 Answer by cmsjr for When is it okay to check if a file exists? cmsjr 2009-03-23T14:53:16Z 2009-03-23T17:19:11Z <p>This may be too simplistic, but I would think the primary reason for checking for the existence of a file (hence the existence of .Exists()) would be to prevent unintended overwrites of existing files, not to avoid exceptions caused by attempting to access non-existent nor non-accessible files. </p> <p><strong>EDIT 2</strong></p> <p>This was, in fact, too simplistic and I recommend you see Stephen Martin's response.</p> http://stackoverflow.com/questions/673654/when-is-it-okay-to-check-if-a-file-exists/673686#673686 0 Answer by Robin Day for When is it okay to check if a file exists? Robin Day 2009-03-23T14:53:30Z 2009-03-23T14:53:30Z <p>There are a numbers of possible applications you may well be writing that a simple File.Exists is more than adequate for the job. If it's a config file that only your application will use then you do not need to go so overkill in your exception handling.</p> <p>Whilst the "flaws" you have pointed out in using this method are all valid, it doesn't mean they are not acceptable flaws for some situations.</p> http://stackoverflow.com/questions/673654/when-is-it-okay-to-check-if-a-file-exists/673695#673695 1 Answer by Josh for When is it okay to check if a file exists? Josh 2009-03-23T14:56:40Z 2009-03-23T15:23:25Z <p>I think the check makes sense when you want to be sure the file was there in the first place. As you said settings files...if there is a file I will try and merge the existing settings instead of blowing them away.</p> <p>Other cases would be when a user tells me to do something with a file. Yes I know the openFileDialog will check if a file exists (But this is optional). I vaguely remeber back in VB6 this was not the case, so verifying the file existed that they just told me to use was common. </p> <p>I'd rather not program by exception. </p> <h1>Edit</h1> <p>I didn't miss the point. You might try and access the file, an exception is thrown and then when you go to create the file, the file was already placed there. Which now causes your exception handling code to go on the fritz. So I guess we could then have an exception handler in our exception handler to catch that the file changed yet again...</p> <p>I'd rather try and prevent exceptions, not use them to control logic. </p> <h1>Edit</h1> <p>Additionally another time to check for attributes such as size is when your waiting for a file operation to finish, yes you never know for sure but with a good algorithim and depending on the system writting the file you might be able to handle a good deal of cases (Had a system running for five years which watched for small files coming over ftp, and it uses a the same api as the file system watcher, and then starts polling waiting for the file to stop changing, before raising an event that the file is ready to be consumed).</p> http://stackoverflow.com/questions/673654/when-is-it-okay-to-check-if-a-file-exists/673699#673699 1 Answer by Lennaert for When is it okay to check if a file exists? Lennaert 2009-03-23T14:56:53Z 2009-03-23T14:56:53Z <p>I'd only check it if I expect it to be missing (e.g. the application settings) and only if I have to read the file.</p> <p>If I have to write to the file, it's either a logfile (so I can just append to it or create a new one) or I replace the contents of it, so I might as well recreate it anyway.</p> <p>If I expect that the file exists, it would be right that an Exception is thrown. Exception handling should then inform the user or perform recovery. My opinion is that this results in cleaner code.</p> <p>File protection (i.e. not overwriting (possibly important) files) is different, in that case I'd always check whether a file exists, if the framework doesn't do that for me (think SaveFileDialog)</p> http://stackoverflow.com/questions/673654/when-is-it-okay-to-check-if-a-file-exists/673702#673702 0 Answer by tvanfosson for When is it okay to check if a file exists? tvanfosson 2009-03-23T14:57:09Z 2009-03-23T15:17:17Z <p>I think anytime that you know that the file may or may not exist and you want to perform some alternate action based on the existence of the file, you should do the check because in this case it's not an exceptional condition for the file to not exist. This won't absolve you from having to handle exceptions -- from someone else either removing or creating the file between the check and your open -- but it makes the intent of the program clear and doesn't rely on exception handling to perform flow-control logic.</p> <p><strong>EDIT</strong>: An example might be log rotation on start up.</p> <pre><code> try { if (File.Exists("app.log")) { RotateLogs(); } log = File.Open("app.log", FileMode.CreateNew ); } catch (IOException) { ...another writer, perhaps? } catch (UnauthorizedAccessException) { ...maybe I should have used runas? } </code></pre> http://stackoverflow.com/questions/673654/when-is-it-okay-to-check-if-a-file-exists/673708#673708 0 Answer by derobert for When is it okay to check if a file exists? derobert 2009-03-23T14:58:14Z 2009-03-23T14:58:14Z <p>One example: You may be able to check for existence of files which you are unable to open (due to, for example, permissions).</p> <p>Another, possibly better example: You want to check for the existence of a Unix device file. But definitely do not open it; opening it has side effects (e.g., open/close <code>/dev/st0</code> will rewind the tape)</p> http://stackoverflow.com/questions/673654/when-is-it-okay-to-check-if-a-file-exists/673718#673718 0 Answer by DNS for When is it okay to check if a file exists? DNS 2009-03-23T14:59:56Z 2009-03-23T14:59:56Z <p>A variety of apps include built-in web servers. It's common for them to generate self-signed SSL certificates the first time they start up. A straightforward way to implement this would be to check whether the cert exists on startup, and create it if not.</p> <p>In theory, it could exist for the check, and not exist later. In that case, we'd get an error when we try to listen, but that can be handled quite easily and is not a big deal.</p> <p>It's also possible that it doesn't exist for the check, and exists later. In that case, it either gets overwritten with a new cert, or writing the new cert fails, depending on your policy. The first is a little annoying, in terms of the cert change causing some alarm, but also not really critical, especially if you do a bit of logging to indicate what is going on.</p> <p>And, in practice, both cases are extraordinarily unlikely to ever come up.</p> http://stackoverflow.com/questions/673654/when-is-it-okay-to-check-if-a-file-exists/673730#673730 0 Answer by Holli for When is it okay to check if a file exists? Holli 2009-03-23T15:02:14Z 2009-03-23T15:02:14Z <p>Like you pointed out its always important what the program should do if the file is missing. In all my applications the user can always delete the config file and the application will create a new one with default values. No Problem. I also ship my applications without config files.</p> <p>But users tend to delete files and even files they should not delete like serial keys and template files. I always check for these files because without them the application is unable to run at all. I can not create a new serial key from default.</p> <p>Whats should happen when the file is missing? You can do a file find or exception handler but the real question is : What will happen when the file is missing? Or how important is the file for the application. I check all the time before I try to access any support files for the app. Additional I do error handling if the file is corrupt and can not be loaded.</p> http://stackoverflow.com/questions/673654/when-is-it-okay-to-check-if-a-file-exists/673837#673837 0 Answer by Skizz for When is it okay to check if a file exists? Skizz 2009-03-23T15:26:01Z 2009-03-23T15:26:01Z <p>I think the reason for "Exists" is to determine when files are missing without the need for creating all the OS housekeeping data required to access the file or having exceptions being thrown. So it's a file handling optimisation more than anything else.</p> <p>For a single file, the saving the "Exists" gives is generally insignificant. If you were checking if a file exists many, many times (for example, searching for #include files) then the saving could be significant.</p> <p>In .Net, the specification for File.Exists doesn't list any exceptions that the method might throw, unlike for example File.Open which lists nine exceptions, so there's certainly less checking going on in the former.</p> <p>Even if "Exists" returns true, you still need to handle exceptions when opening the file, as the .Net reference suggests.</p> <p>Skizz</p> http://stackoverflow.com/questions/673654/when-is-it-okay-to-check-if-a-file-exists/674018#674018 22 Answer by Stephen Martin for When is it okay to check if a file exists? Stephen Martin 2009-03-23T16:12:00Z 2009-03-23T16:50:48Z <p>The File.Exists method exists primarily for testing for the existence of a file when you do not intend to open the file. For example testing for the existence of a locking file whose very existence tells you something but whose contents are immaterial. </p> <p>If you are going to open the file then you will need to handle any exception regardless of the results of any prior calls to File.Exists. So, in general, there is no real value in calling it in these circumstances. Just use the appropriate FileMode enumeration value in your open method and handle any exceptions, as simple as that.</p> <p>EDIT: Even though this is couched in terms of the .Net API, it is based on the underlying system API. Both Windows and Unix have system calls (i.e. CreateFile) that use the equivalent of the FileMode enumeration. In fact in .Net (or Mono) the FileMode value is just passed through to the underlying system call.</p> http://stackoverflow.com/questions/673654/when-is-it-okay-to-check-if-a-file-exists/706922#706922 0 Answer by Joel Coehoorn for When is it okay to check if a file exists? Joel Coehoorn 2009-04-01T18:59:19Z 2009-04-01T19:16:10Z <p>To answer my own question (in part), I want to expand on the example I used: a default config file.</p> <p>Rather than check if it exists at app startup and try to copy the file if the check fails, the thing to do is <em>always</em> try to copy the file. You just do it in such a way that the copy will fail if the file exists rather than replace an existing file. This way all you need to do is catch and ignore any exception thrown if the copy fails because of an existing file.</p> http://stackoverflow.com/questions/673654/when-is-it-okay-to-check-if-a-file-exists/840296#840296 0 Answer by Mike Curry for When is it okay to check if a file exists? Mike Curry 2009-05-08T15:10:53Z 2009-05-08T15:20:57Z <p>Your problem could easily be solved with basic computer science... read up on <a href="http://en.wikipedia.org/wiki/Semaphore%5F%28programming%29" rel="nofollow">Semaphores</a>.</p> <p>(I did not mean to sound like a jerk, I was just pointing you to a simple answer for a common problem).</p>