SFTP Info
Returns metadata of a file on an SFTP server.
This Node is only available in the 2023 Refresh.
Revision History
2.0.0.0 - Initial Release
2.0.0.1 - Fixed exception: Poll interval too long
2.0.0.2 - Updated SSH.NET Nuget Package to version 2024.0.0 (fixes HMAC server errors)
Properties
Connection
Type: Connection Input
Provides a Connection and optionally a DropPoint to service the request.
Host
Type: String
Identifies the network location or address where the server is located.
Port
Type: Int32
Defines the specific communication channel through which data is transmitted.
Typically set to port 22 for standard SFTP connections.
Username
Type: String
The username used to authenticate access to the SFTP server.
Password
Type: String
The password used to authenticate access to SFTP server.
ClientPrivateKeyFileContents
Type: Multiline Text Data
The SSH Certificate contents used to authenticate to the SFTP server.
Path
Type: String Input
The path to the file on the SFTP server.
Content
Type: Multiline Text Output
The Content Property
JSON output containing metadata in the format:
{
"ObjectType": "Directory",
"ObjectPermission": "NotApplicable",
"SizeInBytes": 975232446,
"CreationTime": "YYYY-MM-DDTHH:MM:SSZ",
"LastAccessTime": "YYYY-MM-DDTHH:MM:SSZ",
"LastWriteTime": "YYYY-MM-DDTHH:MM:SSZ"
}
See Also
File Compressor
Flat File
SFTP Read
SFTP Write
SFTP Delete
SFTP Enumerate
SFTP Copy
SFTP Move
SFTP Watch