How do I check if a file exists using Python? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T16:26:24Z http://stackoverflow.com/feeds/question/82831 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/82831/how-do-i-check-if-a-file-exists-using-python 19 How do I check if a file exists using Python? spence91 2008-09-17T12:55:00Z 2009-12-14T20:08:26Z <p>How do I check if a file exists, using Python. without using a try: statement?</p> http://stackoverflow.com/questions/82831/how-do-i-check-if-a-file-exists-using-python/82836#82836 0 Answer by Paul for How do I check if a file exists using Python? Paul 2008-09-17T12:55:48Z 2008-09-17T12:55:48Z <p>@if os.path.exists(filename):</p> http://stackoverflow.com/questions/82831/how-do-i-check-if-a-file-exists-using-python/82841#82841 3 Answer by benefactual for How do I check if a file exists using Python? benefactual 2008-09-17T12:56:22Z 2008-09-17T12:56:22Z <p>os.path.exists(filename)</p> http://stackoverflow.com/questions/82831/how-do-i-check-if-a-file-exists-using-python/82846#82846 19 Answer by PierreBdR for How do I check if a file exists using Python? PierreBdR 2008-09-17T12:57:08Z 2008-09-17T12:57:08Z <p>You have the os.path.exists function:</p> <pre><code>import os.path os.path.exists(file_path) </code></pre> http://stackoverflow.com/questions/82831/how-do-i-check-if-a-file-exists-using-python/82852#82852 23 Answer by rslite for How do I check if a file exists using Python? rslite 2008-09-17T12:57:51Z 2008-09-17T13:09:23Z <p>You can also use </p> <pre><code>import os.path os.path.isfile(fname) </code></pre> <p>if you need to be sure it's a file.</p> http://stackoverflow.com/questions/82831/how-do-i-check-if-a-file-exists-using-python/83012#83012 3 Answer by zgoda for How do I check if a file exists using Python? zgoda 2008-09-17T13:13:31Z 2008-09-17T13:13:31Z <p>Additionally, <code>os.access()</code>.</p> http://stackoverflow.com/questions/82831/how-do-i-check-if-a-file-exists-using-python/84173#84173 12 Answer by bortzmeyer for How do I check if a file exists using Python? bortzmeyer 2008-09-17T15:01:14Z 2008-09-17T15:01:14Z <p>Unlike isfile(), exists() will yield True for directories. So depending if you want only plain files or also directories, you'll use isfile() or exists()</p> <pre><code>&gt;&gt;&gt; print os.path.isfile("/etc/passwd") True &gt;&gt;&gt; print os.path.isfile("/etc") False &gt;&gt;&gt; print os.path.isfile("/does/not/exist") False &gt;&gt;&gt; print os.path.exists("/etc/passwd") True &gt;&gt;&gt; print os.path.exists("/etc") True &gt;&gt;&gt; print os.path.exists("/does/not/exist") False </code></pre> http://stackoverflow.com/questions/82831/how-do-i-check-if-a-file-exists-using-python/85237#85237 18 Answer by Brian for How do I check if a file exists using Python? Brian 2008-09-17T16:49:31Z 2008-09-17T16:49:31Z <p>Just to add to the answers - you're almost always better off using the try: open() approach. os.path.exists() only tells you that the file existed at that point. In the tiny interval between that and running code that depends on it, it is possible that someone will have created or deleted the file.</p> <p>This is a race condition that can often lead to security vulnerabilities. An attacker can create a symlink to an arbitrary file immediately after the program checks no file exists. This way arbitrary files can be read or overwritten with the privilege level your program runs with.</p> http://stackoverflow.com/questions/82831/how-do-i-check-if-a-file-exists-using-python/1671095#1671095 1 Answer by pkoch for How do I check if a file exists using Python? pkoch 2009-11-04T00:48:06Z 2009-11-04T00:53:18Z <p>Prefer the try/catch. It's considered better style and avoids race conditions.</p> <p>Don't take my word for it. There's plenty of support for this theory. Here's a couple:</p> <ul> <li>Style: Section "Handling unusual conditions" of <a href="http://allendowney.com/sd/notes/notes11.txt" rel="nofollow">http://allendowney.com/sd/notes/notes11.txt</a></li> <li>Race condition: <a href="http://www.pubbs.net/python/200909/105975/" rel="nofollow">http://www.pubbs.net/python/200909/105975/</a></li> </ul>