Go: Get filepath from ast.File

huangapple go评论80阅读模式
英文:

Go: Get filepath from ast.File

问题

你可以通过 f.Name.String() 来获取 f 对应的源文件路径 srcPath

英文:

Assume I have:

f, err := parser.ParseFile(fset, srcPath, nil, 0)

How can I get back the srcPath from f?

答案1

得分: 4

使用fset.Position(f.Package).Filenamef中获取srcPath

英文:

Use fset.Position(f.Package).Filename to get srcPath from f.

huangapple
  • 本文由 发表于 2022年7月11日 10:28:14
  • 转载请务必保留本文链接:https://go.coder-hub.com/72933175.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定