通过tf.exe确定TFS工作区的本地路径

时间:2012-03-30 09:45:46

标签: windows batch-file tfs cmd

我正在使用批处理脚本来获取特定项目的最新版本。此脚本仅运行tf.exe并获取某些二进制文件的最新版本。一切正常,但我想将下载文件的属性更改为可写(通过嘲笑这些文件是只读的)。为此,我想确定文件的本地路径,并使用批处理中的attrib命令。

tf.exe workfold [工作区]向我展示了某种列表中的本地路径,但它会更容易,如果它只显示我想要的东西,那么我可以使用提示。到现在为止它看起来像这样:

tf.exe workfold [Workspace]

=======================================

Arbeitsbereich: XYZ-xxxxxx (Username)

Auflistung: TFS-URL

[Workspace]:  C:\xxx\TFS\xxx

是否可以仅确定TFS工作区的本地路径映射,以便我可以在不解析的情况下使用attrib-command的提示符?

3 个答案:

答案 0 :(得分:1)

以下(原油!!!)概念怎么样?

function Get-TfsWorkfold([string]$TfsCollection, [string]$TfsWorkspace)
{
    $TfExePath = "${env:ProgramFiles(x86)}\Microsoft Visual Studio 10.0\Common7\IDE\TF.exe"
    Write-Output "Getting workfold for '$TfsCollection'->'$TfsWorkspace'..."
    Push-Location $LocalPath
    & "$TfExePath" workfold /collection:$TfsCollection /workspace:$TfsWorkspace
}

function Handle-Path()
{
    param([Parameter(ValueFromPipeline=$true,Position=0)] [string] $line)
    $startIndex = $line.IndexOf(': ') + 2;
    $correctedLine = $line.subString($startIndex, $line.length - $startIndex - 1);
    Write-Output $correctedLine;
    Get-ChildItem $correctedLine
}

Get-TfsWorkfold "{serverAndcollection}"  "{workspace}" > c:\temp\test.txt
Select-String c:\temp\test.txt -pattern:': ' | Select-Object Line | Handle-Path

Handle-Path中的最后一行是您可以随心所欲地重写的示例。它是PowerShell但它可以按你的需要工作。

替换{serverAndcollection}和{workspace}。

答案 1 :(得分:1)

您也可以在没有任何字符串操作的情况下执行此操作,并调用TF.exe。我已将其包装在PowerShell脚本中,因此您可以获得以下内容:

function Add-TfsTypes
{
  # NOTE: Not all of the below are needed, but these are all the assemblies we load at the moment. Please note that especially NewtonSoft dll MUST be loaded first!
  $PathToAssemblies = "C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer"
  Add-Type -Path "$PathToAssemblies\NewtonSoft.Json.dll"
  Add-Type -Path "$PathToAssemblies\System.Net.http.formatting.dll"
  Add-Type -Path "$PathToAssemblies\Microsoft.TeamFoundation.Client.dll"
  Add-Type -Path "$PathToAssemblies\Microsoft.TeamFoundation.Common.dll"
  Add-Type -Path "$PathToAssemblies\Microsoft.TeamFoundation.VersionControl.Client.dll"
  Add-Type -Path "$PathToAssemblies\Microsoft.TeamFoundation.WorkItemTracking.Client.dll"
}

function Get-TfsServerPathFromLocalPath {
  param(
    [parameter(Mandatory=$true)][string]$LocalPath,
    [switch]$LoadTfsTypes
  )

  if ($LoadTfsTypes) {
    Add-TfsTypes # Loads dlls
  }

  $workspaceInfo = [Microsoft.TeamFoundation.VersionControl.Client.Workstation]::Current.GetLocalWorkspaceInfo($LocalPath)
  $server = New-Object Microsoft.TeamFoundation.Client.TfsTeamProjectCollection $workspaceInfo.ServerUri
  $workspace = $workspaceInfo.GetWorkspace($server)

  return $workspace.GetServerItemForLocalItem($LocalPath)
}

然后可以像这样调用上述方法:

$serverFolderPath = Get-TfsServerPathFromLocalPath $folderPath -LoadTfsTypes
$anotherServerPath = Get-TfsServerPathFromLocalPath $anotherItemToTestPathOn

答案 2 :(得分:0)

真正的男人在一条线上做到了

powershell -command "& {tf workfold | Select-String -pattern:' $' -SimpleMatch | Select-Object Line | ForEach-Object {$startIndex = $_.Line.IndexOf(': ') + 2; $_.Line.subString($startIndex, $_.Line.length - $startIndex - 1)}}"

如果有很多,当前答案只会返回最后一个路径。