HOME > Programing > よく使うコード集(Visual Basic) > ファイルの存在確認
注意
- このサイトの利用によって生じた損害については当方では責任を負いかねますのでご了承ください。
コード
System.IO.File.Exists()
使用例
Function IsExistFile(PathStr As String) As Boolean Return System.IO.File.Exists(PathStr) End Function
System.IO.File.Exists()
Function IsExistFile(PathStr As String) As Boolean Return System.IO.File.Exists(PathStr) End Function