如何自动执行复制粘贴运行的.exe文件?

时间:2019-06-12 00:01:12

标签: python

当我正在研究使用python进行非常基本的任务自动化时,我正在尝试寻找一种自动执行此过程的方法。

  1. 从特定位置复制exe文件
  2. 将其粘贴到桌面中
  3. 运行exe文件

应该使用“子流程”模块吗?

1 个答案:

答案 0 :(得分:0)

在使用bat文件之前,我已经完成了此操作:

import shutil
import subprocess

shutil.copy2('C:/MyLearning/Test.bat','C:/Users/Desktop') #Copy Test.bat from source ad paste into desktop
subprocess.call([r'C:/Users/Desktop/Test.bat']) #Run Test.bat

我相信只要.exe文件也可以做到这一点,只要无需复制其他依赖关系即可使.exe文件在桌面上运行