diff --git a/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/resources/SystemEditableRemoteFile.java b/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/resources/SystemEditableRemoteFile.java index a49911e08ec..b90f211e107 100644 --- a/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/resources/SystemEditableRemoteFile.java +++ b/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/resources/SystemEditableRemoteFile.java @@ -859,6 +859,10 @@ public class SystemEditableRemoteFile implements ISystemEditableRemoteObject, IP } } + String os = System.getProperty("os.name").toLowerCase(); + if (!os.startsWith("win")) + absolutePath = absolutePath.replace('\\', '/'); + // DY: We should only be escaping the remote portion of the path IPath remote = new Path(absolutePath); absolutePath = SystemFileNameHelper.getEscapedPath(remote.toOSString());