boolean exists = true;
// check if File already exists
while (exists) {
try {
SFTPv3FileAttributes attribs = sftpClient.stat(commandFile.getName());
}
catch (SFTPException e) {
getLogger().debug9("Error code when checking file existence: " + e.getServerErrorCode());
exists = false;
}