0

i created a project to search textfiles with lucene.net. [asp.net/vs08] these textfiles are in a VSS server.

i'm looking for a way how to "check out" or "copy" a Document (later on the whole vss structure with documents) and put it on in a folder on an IIS Server.

how can i do that?

--> copy a document from vss TO Folder on IIS Server [ Later all documents in the original strucutre]

bye the way, its important that the documents keep their original creationdate.

thanks in advance

Zoe
  • 27,060
  • 21
  • 118
  • 148
Tyzak
  • 2,430
  • 8
  • 38
  • 52

1 Answers1

0

If by VSS you mean Visual Source Safe, then you would basically need to use its API to get the documents. I.e. a little short of writing a client for it.

Here's an article with info where you can find the VSS API: http://weblogs.asp.net/nilotpal/archive/2006/04/27/444199.aspx

Slavo
  • 15,255
  • 11
  • 47
  • 60
  • yes i mean visual source safe, and where from do i get the api? i've found http://msdn.microsoft.com/de-de/library/microsoft.visualstudio.sourcesafe.interop%28VS.80%29.aspx – Tyzak Mar 05 '10 at 10:14
  • It comes with Visual Studio - look at the link I provided. – Slavo Mar 08 '10 at 08:55