2

From using file path, I like check in, check out and undo check out of that file in C#.
Is it possible to do that?

Thanks in Advance.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
ratty
  • 13,216
  • 29
  • 75
  • 108
  • You appear to be talking about some sort of subversioning tool but I can't work out what you're actually asking... Could you please clarify? – Smudge202 Jun 16 '11 at 11:14
  • @Smudge202: @ratty was talking about ClearCase: http://stackoverflow.com/tags/clearcase/info . I got this ;) – VonC Jun 16 '11 at 11:24
  • @VonC I hadn't noticed the tag before. Time for another coffee ^^ Cheers ;-) – Smudge202 Jun 16 '11 at 11:36

1 Answers1

1

There isn't a direct C# API, only a set of COM interfaces through the Rational ClearCase Automation Library (CAL).
So as in "How do I get latest clearcase label programmatically from C#?", it is better to wrap those checkout/checkin/unco operations in VB scripts, and call them from your C# program.

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250