Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
wp20ws_DragandDropToolSSH
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
softwarepraktikum
wp20ws_DragandDropToolSSH
Merge requests
!29
Resolve "Add rmdir command"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Add rmdir command"
49-add-rmdir-command
into
master
Overview
0
Commits
3
Pipelines
0
Changes
6
Merged
Lukas Johannes Horn
requested to merge
49-add-rmdir-command
into
master
4 years ago
Overview
0
Commits
3
Pipelines
0
Changes
6
Expand
Closes
#49 (closed)
Edited
4 years ago
by
Lukas Johannes Horn
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
eeeebb64
3 commits,
4 years ago
6 files
+
218
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
development/ssh/src/main/java/de/uniwue/swp/dragdropssh/ssh/SSHFacade.java
+
7
−
0
Options
@@ -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