hello there,<br>i am writing an app for linux. what command would be easiest to test and see if a certain file exist ?<br>i was going to do something like this<br>try:<br>&nbsp;&nbsp;&nbsp; file = open(&#39;/path/to/file&#39;, &#39;rb&#39;)
<br>&nbsp;&nbsp;&nbsp; return True<br>except:<br>&nbsp;&nbsp;&nbsp; return False<br><br>but i thought that there would be an easier way.<br>thanks<br>