Я хочу экранировать "" "и все другие символы в имени программы и аргументах, поэтому я пытаюсь заключить их в двойные кавычки. Это можно сделать в cmd.exe
C:\bay\test\go>"test.py" "a" "b" "c"
hello
['C:\\bay\\test\\go\\test.py', 'a', 'b', 'c']
а что не так со следующим кодом, использующим os.sytem?
cmd = '"test.py" "a" "b" "c"'
print cmd
os.system(cmd)
его вывод:
C:\bay\test\go>test2.py
"test.py" "a" "b" "c"
'test.py" "a" "b" "c' is not recognized as an internal or external command,
operable program or batch file.
Почему вся строка '"test.py" "a" "b" "c"' распознается как одна команда? Но следующий пример не такой:
cmd = 'test.py a b c'
print cmd
os.system(cmd)
C:\bay\test\go>test2.py
test.py a b c
hello
['C:\\bay\\test\\go\\test.py', 'a', 'b', 'c']
Спасибо!