#author("2022-06-12T12:22:56+09:00","default:tosiaki","tosiaki") #author("2022-10-13T15:56:47+09:00","default:tosiaki","tosiaki") [[書き比べスクリプト・リファレンス]] * Python [#m0507f7e] ** ファイル、ディレクトリの有無を調べる [#ff4a4e71] os.path.exists(filepath) import os.path os.path.isdir(path) ** ディレクトリの一覧を取得 [#i625e7f7] import os.path os.path.listdir(path) * PHP [#ecb7822e] ''bool file_exists( string filename )'' filenameで指定されたファイルまたはディレクトリがあれば、trueを返す。