File exists
File exists activity is used for giving the information that the file exists or does not exist in the given directory. The result is returned as True or False.
| *File name | The file path or directory is written. |
| **Result variable name:* | A variable name that will be created is written. |
| Retry Count | The number of attempts is written, can be any numeric value. |
Note: * Fields selected with are required, others are optional.
File name example for folders
You can use the folder path as shown in the example.
C:\Temp\Test
File name example for files
You can use the file path as shown in the example.
Full name for specific file:
C:\Temp\Test.xlsx
Files that start with the initial letter a in the folder and have an extension .txt are processed in batches:
C:\Temp\a*.txt
All files in the folder with extension .xlsx are processed in batch:
C:\Temp\*.xlsx
All files in the folder will be processed in batch:
C:\Temp\*.*
All files/folders in the folder will be processed collectively:
C:\Temp\*
Result variable name example
You can use the Result variable name as shown in the example.
existResult
Retry Count Example
You can use the Retry Count as shown in the examples .
7