在Go語言應用程式中指定Windows檔案路徑並不複雜。首先,我們需要使用filepath套件中的Join函數來拼接路徑。然後,我們可以使用os包中的Chdir函數將目前工作目錄切換到指定的路徑。最後,我們可以使用os套件中的Stat函數來檢查路徑是否存在。總結起來,指定Windows檔案路徑只需要幾個簡單的步驟即可完成。如果你想了解更多關於如何在Go應用程式中指定Windows檔案路徑的內容,繼續閱讀本文,我們將為你提供詳細的解答。
我嘗試為 go 用戶端應用程式指定 .kube/config 檔案的 windows 位置,而不指定絕對路徑。
kubeconfig := flag.string("kubeconfig", "%userprofile%/.kube/config", "location to the kube config file")
輸出:
panic: runtime error: invalid memory address or nil pointer dereference
當我在cmd中使用echo %userprofile%
時,輸出是c:\users\<username>
,所以我認為這是因為\
和/
在程式碼和路徑中的用法不同。
我嘗試使用 \
而不是 /
指定路徑,但它給出了語法錯誤。
有人可以建議我使用 windows 環境變數來指定 go 應用程式中的路徑的解決方案嗎? 提前致謝。
flag.string
的輸出本身不會擴展環境變量,但您可以使用os.expandenv
來做到這一點。但是 os.expandenv
要求您對環境變數使用 unix 表示法,即 $userprofile
或 ${userprofile}
。您可以使用 filepath.clean
來取得我們特定作業系統(在您的情況下為 windows)的乾淨檔案路徑。
範例:
kubeconfig := flag.string("kubeconfig", "$userprofile/.kube/config", "location to the kube config file") fmt.println(*kubeconfig) fmt.println(os.expandenv(*kubeconfig)) fmt.println(filepath.clean(os.expandenv(*kubeconfig)))
這將在 windows 上輸出以下內容:
$USERPROFILE/.kube/config C:\Users\username/.kube/config C:\Users\username\.kube\config
以上是如何在 Go 應用程式中指定 Windows 檔案路徑?的詳細內容。更多資訊請關注PHP中文網其他相關文章!