我有这个命令要运行:
'xcopy /e "%s" "%s"'%(executablesPath + "\\*", sourcePath+"\\Executables\\")
其格式为:
xcopy /e "I:\Storage$\tools\Executables\*" "C:\Win10x64-1903\Executables\"
并跑进:
subprocess.run(shlex.split(command))
是什么导致了错误ValueError: No closing quotation
?