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 using this SFTP adapter I cannot delete a directory on a server, I've debugged it and the following SFTP error is generated in the SFTP library you use: NET_SFTP_STATUS_FILE_IS_A_DIRECTORY: Specified file is a directory.
After further investigation, it seems you are calling delete in your deleteDir method. I believe this should be rmdir to remove a directory.
The text was updated successfully, but these errors were encountered:
When using this SFTP adapter I cannot delete a directory on a server, I've debugged it and the following SFTP error is generated in the SFTP library you use:
NET_SFTP_STATUS_FILE_IS_A_DIRECTORY: Specified file is a directory.
After further investigation, it seems you are calling
delete
in yourdeleteDir
method. I believe this should bermdir
to remove a directory.The text was updated successfully, but these errors were encountered: