os.execute ([command])
說明:相當於C的system函數,回傳系統狀態碼。
用來開啟外部程式的函數。但不是每個程式都能開。
範例:按任意鍵繼續. . .
os.execute("pause")
開啟檔案總管,預設為"我的文件"。
os.execute("explorer.exe")
開啟檔案總管,位置為 D:\ ,並反白選取 MUSHclient 資料夾。
os.execute("explorer /select,D:\\MUSHclient" )