You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SftpClient does not support '~'. This is used by SSH, as linux/unix, as a shorthand for the user home.
For instance, Exists would return false for a call with ~/something, although something would exists in user's home.
Is this a SFTP protocol limitation?
The text was updated successfully, but these errors were encountered:
It seems like it is not defined in the SFTP protocol but there is an OpenSSH extension [email protected] for servers that advertise support: https://www.sftp.net/specification. This library currently does not have any implementation/awareness of the extension
SftpClient does not support '~'. This is used by SSH, as linux/unix, as a shorthand for the user home.
For instance, Exists would return
false
for a call with~/something
, althoughsomething
would exists in user's home.Is this a SFTP protocol limitation?
The text was updated successfully, but these errors were encountered: