LoginSignup
9

More than 5 years have passed since last update.

Go で実行ファイルのパスを取得

Posted at

実行ファイルと同じディレクトリにファイルを置きたい場合とか
実行ファイルのパスで、プログラム実行時のカレントディレクトリではない

exe, err := os.Executable()

ファイル名までのフルパスが exe に格納される

ディレクトリ名(dirname コマンドイメージ) が欲しければ以下
path/filepath の import を忘れずに

filepath.Dir(exe)

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9