Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a folder in Team Foundation Server with several sub-folders:

  • candidates
    • beta1
    • beta2
    • rc1
    • ga

I'd like to move three of them under a new folder:

  • candidates
    • defunct
      • beta1
      • beta2
      • rc1
    • ga

Each folder contains tens of thousands of files of various sizes. They are all branches of some other folder. I don't have them checked out in my working folder, but they are under a mapped folder.

The Rename option is greyed out in TFS. When I try to rename beta1 to defunct\beta1, the TF command says:

The item $/blah/candidates/beta1 could not be found in your workspace.

I've tried getting a single file beneath beta1, but that doesn't fix it.

I've also tried specifying the full paths starting with $. And if I unmap this location from my workspace, it complains that it could not determine the workspace (even though I'm telling it two paths on the server.)

I get the crazy impression that I will have to physically download about 100,000 files, just so I can tell the server to rename some folders above them! This cannot possibly be true, in a sane world. What am I doing wrong?

share|improve this question
Who said the world was sane? :D Good question, though! – Aaron Feb 11 '10 at 16:32

2 Answers

The other option is to use a one-level workspace mapping. Unlike the non-recursive "Get", this can be done entirely from the UI.

Further reading:

share|improve this answer
up vote 0 down vote accepted

Okay, it's not as bad as I thought!

If I say:

tf get beta1

and so on, for each of the sub-folders, it only gets the files immediately under that folder. This isn't anything like as bad. And then the Rename command appears enabled in the GUI.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.