import os
file_name = 'python.py'
if os.path.exists(file_name):
print u'指定された名前のファイルまたはディレクトリが存在します。'
if os.path.isfile(file_name):
print u'ファイルです。'
if os.path.isdir(file_name):
print u'ディレクトリです。'
else:
print u'指定された名前のファイルまたはディレクトリは存在しません。'
file_name = 'python.py'
if os.path.exists(file_name):
print u'指定された名前のファイルまたはディレクトリが存在します。'
if os.path.isfile(file_name):
print u'ファイルです。'
if os.path.isdir(file_name):
print u'ディレクトリです。'
else:
print u'指定された名前のファイルまたはディレクトリは存在しません。'