英文:
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).Filename
从f
中获取srcPath
。
英文:
Use fset.Position(f.Package).Filename
to get srcPath
from f
.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论