2014-08-22 python でファイルの有無確認 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