I have this command to run:
'xcopy /e "%s" "%s"'%(executablesPath + "\\*", sourcePath+"\\Executables\\")
which is formatted to:
xcopy /e "I:\Storage$\tools\Executables\*" "C:\Win10x64-1903\Executables\"
and ran within:
subprocess.run(shlex.split(command))
What is causing the error ValueError: No closing quotation
?