View | Details | Raw Unified | Return to bug 195677
Collapse All | Expand All

(-)src/org/eclipse/rse/internal/services/files/ftp/FTPService.java (-4 / +1 lines)
Lines 836-845 Link Here
836
					throw new RemoteFileIOException(new Exception(ftpClient.getReplyString()));
836
					throw new RemoteFileIOException(new Exception(ftpClient.getReplyString()));
837
				}
837
				}
838
				
838
				
839
				
839
				success = ftpClient.rename(oldName, newName);
840
				String source = remoteParent.endsWith(String.valueOf(getSeparator())) ? remoteParent + oldName : remoteParent + getSeparator() + oldName;
841
				
842
				success = ftpClient.rename(source, newName);
843
				
840
				
844
				if(!success)
841
				if(!success)
845
				{
842
				{

Return to bug 195677