如何在Windows 10中的命令提示符(cmd)中从带有子进程模块的python脚本编写命令

时间:2018-12-27 00:41:22

标签: python windows subprocess command-prompt

我需要从python脚本启动外部程序,该脚本可以在命令提示符下运行。我一直在搜索python文档和堆栈溢出,但是找不到对我有帮助的东西。我使用以下脚本成功启动了cmd: enter image description here

enter image description here

但是我仍然需要写下更多这样的命令:

  • mkdir数据
  • 复制data.txt c:\ data

enter image description here

我认为这是使用子流程模块非常容易的工作,但是我找不到方法。我该怎么办?

1 个答案:

答案 0 :(得分:-2)

尝试使用通话

subprocess.call(['cmd.exe', 'mkdir data']);