How do I check if a file exists using Python? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T16:26:24Zhttp://stackoverflow.com/feeds/question/82831http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/82831/how-do-i-check-if-a-file-exists-using-python19How do I check if a file exists using Python?spence912008-09-17T12:55:00Z2009-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#828360Answer by Paul for How do I check if a file exists using Python?Paul2008-09-17T12:55:48Z2008-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#828413Answer by benefactual for How do I check if a file exists using Python?benefactual2008-09-17T12:56:22Z2008-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#8284619Answer by PierreBdR for How do I check if a file exists using Python?PierreBdR2008-09-17T12:57:08Z2008-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#8285223Answer by rslite for How do I check if a file exists using Python?rslite2008-09-17T12:57:51Z2008-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#830123Answer by zgoda for How do I check if a file exists using Python?zgoda2008-09-17T13:13:31Z2008-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#8417312Answer by bortzmeyer for How do I check if a file exists using Python?bortzmeyer2008-09-17T15:01:14Z2008-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>>>> print os.path.isfile("/etc/passwd")
True
>>> print os.path.isfile("/etc")
False
>>> print os.path.isfile("/does/not/exist")
False
>>> print os.path.exists("/etc/passwd")
True
>>> print os.path.exists("/etc")
True
>>> 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#8523718Answer by Brian for How do I check if a file exists using Python?Brian2008-09-17T16:49:31Z2008-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#16710951Answer by pkoch for How do I check if a file exists using Python?pkoch2009-11-04T00:48:06Z2009-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>