I want to delete the file filename if it exists. Is it proper to say
if os.path.exists(filename):
os.remove(filename)
Is there a better way? A one-line way?
|
I want to delete the file
Is there a better way? A one-line way? |
|||||||||||||||
|
|
A more pythonic way would be:
Although this takes even more lines and looks very ugly, it avoids the unnecessary call to It may be worthwhile to write a function to do this for you:
|
|||||||||||||||||||
|
|
os.path.exists returns true for folders as well as files. Consider using os.path.isfile to check for whether the file exists instead. |
|||
|
|
|
Something like this? Takes advantage of short-circuit evaluation. If the file does not exist, the whole conditional cannot be true, so python will not bother evaluation the second part.
|
|||||||||||
|