在Golang 中執行Windows 指令:排除「del」執行檔未找到錯誤
您嘗試使用exec 執行「del」指令。 Golang 中的 Command("del", "c:\aaa.txt") 導致錯誤訊息,表示可執行檔案在系統路徑中找不到。
與其他作業系統不同,Windows 具有無法作為獨立執行檔使用的內建指令。這些命令透過命令提示字元 (cmd.exe) 執行。要在 Golang 中執行這些命令,需要使用“cmd /c”前綴。
以下程式碼片段示範如何使用Golang 在Windows 中正確執行「del」指令:
package main import ( "fmt" "os/exec" "runtime" ) func main() { var c *exec.Cmd switch runtime.GOOS { case "windows": c = exec.Command("cmd", "/C", "del", "D:\a.txt") default: // Mac & Linux c = exec.Command("rm", "-f", "/d/a.txt") } if err := c.Run(); err != nil { fmt.Println("Error:", err) } }
在此程式碼片段中:
此程式碼將在Windows中正確執行“del”命令並刪除指定文件,而之前嘗試直接執行“del”會失敗。
以上是為什麼 Windows 上的 Golang 中 `exec.Command('del', ...) ` 失敗,如何修復?的詳細內容。更多資訊請關注PHP中文網其他相關文章!