それマグで!

知識はカップより、マグでゆっくり頂きます。 takuya_1stのブログ

習慣に早くから配慮した者は、 おそらく人生の実りも大きい。

python でファイルの有無確認

Pythonでファイルの存在確認をするには

#!/usr/bin/env python
import os

if os.path.exists("/tmp/hoge.png") :
    print "Exists"
else :
    print "Not Exists"

print "end"

os を使う。

bashの場合

if [ -f /tmp/hoge.png ]; then
  echo "Exists"
fi