我需要从TFS存储库中提取文件名及其扩展名。 有没有API可以做同样的事情? 任何替代方法也值得赞赏。
答案 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
等模式,并仅检索与这些扩展名匹配的文件。