Search K
Appearance
Appearance
The Get File Info node retrieves detailed information about a specified file path, returning components such as directory, file name, extension, and parent folders.
Use this node to:
✅ Parse and extract file path details for downstream processing.
✅ Dynamically derive file names, extensions, or directory structures within automation workflows.
✅ Validate file paths and retrieve their hierarchical context for logging or conditional operations.
Field Label | Input Type | Description |
---|---|---|
File Path | Text | The full or relative file path to retrieve information from. |
Output Variable | Description |
---|---|
FullPath | The absolute full path of the file. |
Directory | The directory containing the file. |
FileName | The file name including its extension. |
BaseName | The file name without its extension. |
Extension | The file extension (including the dot). |
ParentFolders | A list of parent folders up the directory tree, ordered from immediate parent upwards. |
This node:
File Path
).taskParameters.data
for cleanliness.✅ Extract a file’s base name to use as a database key.
✅ Determine a file’s extension to validate processing eligibility.
✅ Retrieve parent directories to build dynamic archive or logging paths.
Path.GetFullPath
, ensuring absolute path resolution even if a relative path is provided.