View | Details | Raw Unified | Return to bug 195709 | Differences between
and this patch

Collapse All | Expand All

(-)miners/org/eclipse/rse/dstore/universal/miners/UniversalFileSystemMiner.java (-1 / +3 lines)
Lines 17-22 Link Here
17
 * Xuan Chen (IBM) - Fix 189487 - copy and paste a folder did not work - workbench hang
17
 * Xuan Chen (IBM) - Fix 189487 - copy and paste a folder did not work - workbench hang
18
 * Xuan Chen (IBM)        - [189681] [dstore][linux] Refresh Folder in My Home messes up Refresh in Root
18
 * Xuan Chen (IBM)        - [189681] [dstore][linux] Refresh Folder in My Home messes up Refresh in Root
19
 * Xuan Chen (IBM)        - [191280] [dstore] Expand fails for folder "/folk" with 3361 children
19
 * Xuan Chen (IBM)        - [191280] [dstore] Expand fails for folder "/folk" with 3361 children
20
 * Kevin Doyle (IBM) - [195709] Windows Copying doesn't work when path contains space
20
 *******************************************************************************/
21
 *******************************************************************************/
21
22
22
package org.eclipse.rse.dstore.universal.miners;
23
package org.eclipse.rse.dstore.universal.miners;
Lines 331-337 Link Here
331
					if (_isWindows)
332
					if (_isWindows)
332
					{
333
					{
333
						tgt = tgtFolder.getAbsolutePath() + File.separatorChar + srcFile.getName();
334
						tgt = tgtFolder.getAbsolutePath() + File.separatorChar + srcFile.getName();
334
						doCopyCommand(enQuote(src), enQuote(tgt), folderCopy, status);
335
						// Both unix and windows need src quoted, so it's already done
336
						doCopyCommand(src, enQuote(tgt), folderCopy, status);
335
						if (status.getAttribute(DE.A_SOURCE) == IServiceConstants.FAILED)
337
						if (status.getAttribute(DE.A_SOURCE) == IServiceConstants.FAILED)
336
						{
338
						{
337
							break;
339
							break;

Return to bug 195709