由於os.popen正在subprocess.popen替代,我想知道我將如何轉換如何使用子popen方法的Python
os.popen('swfdump /tmp/filename.swf/ -d')
到subprocess.popen()
我想:
subprocess.Popen("swfdump /tmp/filename.swf -d")
subprocess.Popen("swfdump %s -d" % (filename)) # NOTE: filename is a variable
# containing /tmp/filename.swf
但我想我沒有正確寫出來。任何幫助,將不勝感激。由於
這是一個Windows機器或Linux機器? – AAI