在Python中,你可以使用subprocess
模塊來執(zhí)行CMD命令
import subprocess
# 要執(zhí)行的CMD命令,例如:dir
cmd = "dir"
# 使用subprocess.run()執(zhí)行命令
result = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True, shell=True)
# 打印執(zhí)行結(jié)果
print("命令輸出:")
print(result.stdout)
print("錯(cuò)誤輸出:")
print(result.stderr)
print("返回碼:")
print(result.returncode)
在這個(gè)例子中,我們執(zhí)行了一個(gè)簡單的dir
命令,它列出了當(dāng)前目錄的文件和文件夾。subprocess.run()
接收一個(gè)命令字符串(或命令序列),并通過stdout
、stderr
和text
參數(shù)來捕獲命令的輸出。shell=True
表示我們在一個(gè)shell環(huán)境中執(zhí)行這個(gè)命令。
注意:在使用shell=True
時(shí),要注意潛在的安全風(fēng)險(xiǎn),因?yàn)樗赡軙?huì)導(dǎo)致命令注入攻擊。在這種情況下,最好使用命令序列(列表形式)而不是命令字符串,并避免使用shell=True
。