用参数调用xcopy?

时间:2016-08-05 22:09:23

标签: python windows xcopy

我试图用xcopy调用subprocess,这等于bat命令。

每次出现错误时:"参数数量无效"或"找不到文件"。

我该怎么做?

PYTHON

subprocess.call([
           "xcopy",
           str(C:\appFolder\appFile.txt),
           str(F:\appFolder\appFile.txt),
           "/s /y /q"
        ])

CMD

xcopy "C:\appFolder\appFile.txt" "F:\appFolder\appFile.txt" /s /y /q >nul

1 个答案:

答案 0 :(得分:0)

您可以使用sys和env cmds来做类似的事情吗?: -

Types