SharpCvsLib

Manager.Find Method 

Find an entry given the name of the entry and a starting search path.

[Visual Basic]
Public Function Find( _
   ByVal path As String, _
   ByVal name As String _
) As Entry
[C#]
public Entry Find(
   string path,
   string name
);

Parameters

path
The path to the entry.
name
The name of the entry to search for.

Return Value

The entry object found in the directory path specified if found. If no entry is found then an exception is thrown.

Exceptions

Exception TypeCondition
EntryNotFoundException If no directory entry is found.

See Also

Manager Class | ICSharpCode.SharpCvsLib.FileSystem Namespace