Returns 1 (true) if a file exists; otherwise, returns 0 (false).
•Source file is the path of the file to check. See Creating file paths.
•Target is the field or variable to store the result. If the variable doesn't exist, this script step creates it (see Using variables).
Product | Supported |
FileMaker Pro Advanced | Yes |
FileMaker Go | Yes |
FileMaker WebDirect | No |
FileMaker Server | Yes |
FileMaker Cloud products | Yes |
FileMaker Data API | No |
Custom Web Publishing | Yes |
Runtime solution | No |
FileMaker Pro 18.0 Advanced
Sets the Table::Data field to 1 if the file named data.txt exists.
Get File Exists [ "data.txt" ; Target: Table::Data ]
Displays whether a file named change.log exists in the Documents folder.
Set Variable [ $file ; Value: Get ( DocumentsPath ) & "change.log" ]
Get File Exists [ "$file" ; Target: $fileExists ]
Show Custom Dialog [ $file & ": " & If ( $fileExists ; "Exists" ; "Does not exist" ) ]