Skip to content
Snippets Groups Projects

Resolve "Add rmdir command"

Merged Lukas Johannes Horn requested to merge 49-add-rmdir-command into master
6 files
+ 218
5
Compare changes
  • Side-by-side
  • Inline
Files
6
@@ -70,4 +70,11 @@ public interface SSHFacade {
*/
public DeletionResult delete(String remoteFilePath);
/**
* Removes a directory on remote server. Watch out directory has to be empty! If necessary clean it with rm method first
* @param remoteFilePath path on remote containing the directory to get deleted at the end
* @return RemoveDirectoryResult containing the most important information about the deletion
*/
public RemoveDirectoryResult rmdir(String remoteFilePath);
}
Loading