rem single quotes don't work
E:\>rd /s '\\?\E:\Downloads'
'\\?\E:\Downloads', Are you sure (Y/N)? Y
The filename, directory name, or volume label syntax is incorrect.
rem use double quotes work
E:\>rd /s "\\?\E:\Downloads"
\\?\E:\Downloads, Are you sure (Y/N)? y

0 Comments