用于与TFS存储库

时间:2016-07-12 04:30:34

标签: api tfs

我需要从TFS存储库中提取文件名及其扩展名。 有没有API可以做同样的事情? 任何替代方法也值得赞赏。

1 个答案:

答案 0 :(得分:0)

VersionControlServer.GetItems Method获取存储库中的Item对象数组。

您可以使用using System.Diagnostics; namespace AppA { class StartProgram { static void Main(string[] args) { ProcessStartInfo startInfo = new ProcessStartInfo("AppB.exe"); //you can allso provide full path of the exe if both these exe's are not present on the same folder startInfo.WindowStyle = ProcessWindowStyle.Minimized; Process.Start(startInfo); startInfo.Arguments = string.Join(" ",args); Process.Start(startInfo); } } } *.cs等模式,并仅检索与这些扩展名匹配的文件。