如何以编程方式找出 TFS 服务器上是否存在特定文件?
问问题
1730 次
2 回答
4
您可以通过ServerItemExists()
在VersionControlServer
.
using (var tfs = TfsTeamProjectCollectionFactory.GetTeamProjectCollection(
new Uri("http://tfs:8080/tfs/DefaultCollection")))
{
var server = tfs.GetService<VersionControlServer>();
Boolean doesFileExist = server.ServerItemExists("$/Project/Main/MySoltuion.sln", ItemType.File);
}
于 2012-05-25T16:30:57.950 回答
0
自己找到了答案:
ServerItemExists 方法
http://msdn.microsoft.com/en-us/library/microsoft.teamfoundation.versioncontrol.client.versioncontrolserver.serveritemexists(v=vs.100).aspx
http://social.msdn .microsoft.com/Forums/pl-PL/vsx/thread/306753e5-8dc4-4f56-9748-9082db3f0c24
于 2012-05-25T16:30:26.373 回答