SharpCvsLib

Entry Constructor (String, String, Boolean)

Create a new Cvs entry. If the deriveFullPath is set to false then the path information specified in the constructor is taken as the entire path to the file.

[Visual Basic]
Overloads Public Sub New( _
   ByVal path As String, _
   ByVal fileContents As String, _
   ByVal deriveFullPath As Boolean _
)
[C#]
public Entry(
   string path,
   string fileContents,
   bool deriveFullPath
);

Parameters

path
Either the path to the directory above the CVS directory, or if the deriveFullPath is set to true then this is the full path to the file under cvs control.
fileContents
A line that represents this particular entry under cvs control.
deriveFullPath
true
if the full path should be derived from combining the path information and the file name parsed from the fileContents or if the path information passed in represents the full path to the file.

See Also

Entry Class | ICSharpCode.SharpCvsLib.FileSystem Namespace | Entry Constructor Overload List