ListFiles
Returns a list of available CSV or related data files within a designated local or cloud-based directory. This procedure enables browsing, validation, or synchronization of available files before data processing or import operations.
Input
| Name | Type | Description |
| Mask | String | Specifies the file-name filter mask that determines which files are included in the result set (for example, '*.csv'). |
| Path | String | Specifies the directory path from which files are listed. The path is relative to the directory that is defined in the URI connection property. |
Result Set Columns
| Name | Type | Description |
| FileName | String | Returns the name of each file that matches the specified filter mask. The FileName output identifies individual files in the listed directory. |
| LastModified | Long | Returns the UNIX timestamp that indicates when each file was last modified. The LastModified output enables users to track file updates or synchronization status. |
| CreatedAt | Long | Returns the UNIX timestamp that indicates when each file was created. The CreatedAt output returns a value of -1 when the connected storage system does not support file creation time metadata. |
| URI | String | Returns the full Uniform Resource Identifier (URI) of each listed file. The URI output provides the absolute reference to the file's location in local or cloud-based storage. |