如何获取项目的文件名? - 团队基础 SDK
我正在尝试从 TFS 中按名称获取文件。我从一个位置递归获取所有文件,然后循环这些文件以查找特定文件。 VersionControl.Client.Item 对象似乎没有公开文件名(或文件夹名)。
tfs.EnsureAuthenticated();
VersionControlServer vcs = versionControlServer)tfs.GetService(typeof(VersionControlServer));
var allStaticFiles = vcs.GetItems(path + "*", RecursionType.Full).Items;
foreach (var staticFile in allStaticFiles)
{
if(staticFile == ?? // need the filename)
{
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
(假设 TFS2008。)
vcs.GetItems(...).Items
的类型为Item[]
。因此
staticFile
是Item
实例。Item
的属性都是服务器端的,因为路径的详细信息将取决于客户端的工作区映射(对于同一用户,同一台计算机上可以有多个工作区,包括该项目)。您可以使用
Item.ServerItem
获取文件名(取最后一个路径元素)到路径中,获取一个
Workspace
代表当前工作区的实例,并使用其方法之一将ServerItem
映射到本地路径(有一些行为略有不同,没有更多上下文,不清楚哪一个是正确的)。(Assuming TFS2008.)
The type of
vcs.GetItems(...).Items
isItem[]
.So therefore
staticFile
is anItem
instance.The properties of
Item
are all server side because details of the path will depend on the client's workspace mapping (there can be multiple workspaces including this item on the same computer for the same user).You can use
Item.ServerItem
to get the filename (take the last path element)To the path, get a
Workspace
instance representing your current workspace and use one of its methods to map theServerItem
to a local path (there are a few with subtly different behaviour, without more context it is not clear which is the right one).