SharpCvsLib

Entry.IsDirectoryEntry Method 

Indicate if the file contents string is for a directory entry. This is identified by an entry line string that contains a "D" as the first character in the string.

[Visual Basic]
Public Shared Function IsDirectoryEntry( _
   ByVal fileContents As String _
) As Boolean
[C#]
public static bool IsDirectoryEntry(
   string fileContents
);

Parameters

fileContents
The contents of the entry file.

Return Value

true
if the file contents string indicates a directory, otherwise return
false
.

See Also

Entry Class | ICSharpCode.SharpCvsLib.FileSystem Namespace