How do i check if a file exists, using python. without using a try: statement?
|
3
|
|
|
|
|
|
You can also use
if you need to be sure it's a file. |
||||
|
|
|
You have the os.path.exists function:
|
||
|
|
|
|
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. 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. |
||
|
|
|
|
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()
|
||
|
|
|
|
os.path.exists(filename) |
||||
|
|
|
Additionally, |
||
|
|
|
|
@if os.path.exists(filename): |
||
|
|
|
|
Prefer the try/catch. It's considered better style and avoids race conditions. Don't take my word for it. There's plenty of support for this theory. Here's a couple:
|
|||
|
|
