TopicCollection.AddTopicsFromFolder Method

HTML to MAML Converter

TopicCollectionAddTopicsFromFolder Method
Add all topics from the specified folder recursively to the topic collection.

Namespace: HtmlToMamlConversion
Assembly: ConvertHtmlToMaml (in ConvertHtmlToMaml.exe) Version: 1.0.0.2
Syntax
public void AddTopicsFromFolder(
	string folder,
	Dictionary<FilePath, Topic> topicDictionary
)
Public Sub AddTopicsFromFolder ( 
	folder As String,
	topicDictionary As Dictionary(Of FilePath, Topic)
)
public:
void AddTopicsFromFolder(
	String^ folder, 
	Dictionary<FilePath^, Topic^>^ topicDictionary
)
member AddTopicsFromFolder : 
        folder : string * 
        topicDictionary : Dictionary<FilePath, Topic> -> unit 

Parameters

folder
Type: SystemString
The folder from which to get the files
topicDictionary
Type: System.Collections.GenericDictionaryFilePath, Topic
A dictionary used to contain the list of files index by name.
Remarks
Only files with a .htm? or .topic extension are added
See Also