https://bugs.winehq.org/show_bug.cgi?id=44967
Bug ID: 44967 Summary: xcopy does not copy empty subdirectories if options /s and /e without space Product: Wine Version: 3.0 Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: minor Priority: P2 Component: cmd Assignee: wine-bugs@winehq.org Reporter: jonathanbelsewir@yahoo.de Distribution: ---
xcopy does not copy empty subdirectories in folder test:
The following command works ok: xcopy /s /e test* testcopy\
Without space between /s and /e, xcopy does not coyp subdirectories: xcopy /s/e test* testcopy\
Test-File: @echo off md test cd test md test1 md test2 echo foo > test.txt cd ..
xcopy /s/e test* testcopy\
dir testcopy :end