AppData\Local / Access 下载的自定义程序集的环境变量
我正在尝试设置我的 TFS2010 版本,并且想要访问通过“自定义程序集的版本控制路径”下载的文件。
据我所知,这些文件已下载到:
C:\User\
我可以通过上述方式直接访问该文件夹路径,但如果有一个环境变量(或者我可以在构建中使用的东西)来间接访问该文件夹,那就太好了。
或者...有更好的方法来获取这些文件吗? (我将一个版本文件放在那里,以便每次运行构建时下载)。
I am trying to setup my TFS2010 Build and I want to access the files that are downloaded via the "Version control path to custom assemblies".
From what I can tell those files are downloaded to:
C:\User\<Build User>\AppData\Local\BuildAgent\<Built Agent Number>
I can directly access that folder via the above path, but it would be nice if there was an environment variable (or something I can use in the build) to access that folder indirectly.
Or... Is there a better way to get at these files? (I am putting a version file in there to be downloaded every time the build is run).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
%LOCALAPPDATA%
环境变量。它扩展到示例:
%LOCALAPPDATA%\BuildAgent
请注意,
%APPDATA%
将扩展为You can use
%LOCALAPPDATA%
environment variable. It expands toExample:
%LOCALAPPDATA%\BuildAgent
Note that
%APPDATA%
will expand to