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
When you specify a (remote) file path to Upload(Stream, String) for which the last part of the directory directory (parent path) does not exist, then we currently do not throw an exception.
Instead the file is created with as path the directory of specified path.
For example:
If the directory /home/sshnet exists, but directory /home/sshnet/logs does not exist, then using the Upload(Stream, String) method to upload the content to the /home/sshnet/logs/file path will actually upload the content to the file path /home/sshnet/logs.
The text was updated successfully, but these errors were encountered:
When you specify a (remote) file path to
Upload(Stream, String)
for which the last part of the directory directory (parent path) does not exist, then we currently do not throw an exception.Instead the file is created with as path the directory of specified path.
For example:
If the directory /home/sshnet exists, but directory /home/sshnet/logs does not exist, then using the
Upload(Stream, String)
method to upload the content to the /home/sshnet/logs/file path will actually upload the content to the file path /home/sshnet/logs.The text was updated successfully, but these errors were encountered: