ファイルまたはディレクトリが存在するかどうか調べる
Public Function file_exists(ByVal filename)
file_exists = false
filename = fileMapPath(filename)
If fso.FileExists(filename) Then file_exists = true
If fso.FolderExists(filename) Then file_exists = true
End Function
引数
path = string ファイルあるいはディレクトリへのパス。
戻り値
ファイルあるいはディレクトリが存在するかどうかを調べます。
処理
ファイルあるいはディレクトリが存在するかどうかを調べます。
File_System class内での処理