public String getCurrentDirectory() throws GenericFileOperationFailedException {
LOG.trace("getCurrentDirectory()");
try {
return channel.pwd();
} catch (SftpException e) {
throw new GenericFileOperationFailedException("Cannot get current directory", e);
}
}