指定されたフォルダ内にファイルが存在するかどうか調べたい

初心者です。
else ifアクティビティを使って、変数str_フォルダパスで指定されたフォルダ内にファイルが存在するかどうか調べるのは、添付画像の書き方で良いですか?ファイルが存在すればThenを実行する想定です。

無題

Hi @gorby

You can use like this

System.IO.File.Exists(str_folderPath)

Regards
Sudharsan

hello @gorby
Your expression is good, just add dot in between the File and exists

file.Exists("FilePath")


Otherwise try file exist activity and its results boolean, It can pass in If the condition
image