python怎么執(zhí)行本地bat文件

小億
267
2023-12-07 11:41:18
欄目: 編程語言

要執(zhí)行本地的.bat文件,可以使用subprocess模塊中的run函數(shù)。下面是一個(gè)示例:

import subprocess

# 指定.bat文件的路徑
bat_file = r'C:\path\to\your\file.bat'

# 執(zhí)行.bat文件
subprocess.run(bat_file, shell=True)

請(qǐng)確保將bat_file變量替換為你自己的.bat文件的路徑。另外,shell=True參數(shù)用于在Windows系統(tǒng)上執(zhí)行批處理文件。

0