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

(-)src/org/eclipse/rse/internal/efs/ui/RSEFileSystemContributor.java (+9 lines)
Lines 17-22 Link Here
17
 *    - Improve performance by RSEFileStore instance factory and caching IRemoteFile.
17
 *    - Improve performance by RSEFileStore instance factory and caching IRemoteFile.
18
 *    - Also remove unnecessary class RSEFileCache and obsolete branding files.
18
 *    - Also remove unnecessary class RSEFileCache and obsolete branding files.
19
 * Martin Oberhuber (Wind River) - [188360] renamed from plugin org.eclipse.rse.eclipse.filesystem
19
 * Martin Oberhuber (Wind River) - [188360] renamed from plugin org.eclipse.rse.eclipse.filesystem
20
 * Kevin Doyle (IBM) - [189441] New Project using RSE can't be done with Windows
20
 ********************************************************************************/
21
 ********************************************************************************/
21
22
22
23
Lines 74-79 Link Here
74
			
75
			
75
			IRemoteFile file = (IRemoteFile)selected;
76
			IRemoteFile file = (IRemoteFile)selected;
76
			String path = file.getAbsolutePath();
77
			String path = file.getAbsolutePath();
78
			
79
			// Windows file paths will contain \ but URI's can't contain them
80
			path = path.replace('\\', '/');
81
			
82
			// Path must start with a /
83
			if (!path.startsWith("/")) //$NON-NLS-1$
84
				path = "/" + path; //$NON-NLS-1$
85
			
77
			IHost host = dlg.getSelectedConnection();
86
			IHost host = dlg.getSelectedConnection();
78
			String hostName = host.getHostName();
87
			String hostName = host.getHostName();
79
			
88
			

Return to bug 189441