ファイル、フォルダが存在するかどうかを調べます。
FileExists ( "path" )
パラメータ
Path | 調べるフォルダ、ファイル |
返し値
成功 | 1を返します。 |
失敗 | パス/ファイルが存在しない場合0を返します。 |
注意
ディスクの挿入されていないフロッピーディスクドライブを指定した場合、FileExistsは0を返します。
関連
FileGetAttrib, DriveStatus
例
If FileExists("C:\autoexec.bat") Then
MsgBox(4096, "C:\autoexec.bat File", "Exists")
Else
MsgBox(4096,"C:\autoexec.bat File", "Does NOT exists")
EndIf
If FileExists("C:\") Then
MsgBox(4096, "C:\ Dir ", "Exists")
Else
MsgBox(4096,"C:\ Dir" , "Does NOT exists")
EndIf
If FileExists("D:") Then
MsgBox(4096, "D: Drive", "Exists")
Else
MsgBox(4096,"D: Drive", "Does NOT exists")
EndIf