Gotta love OOP
Been making TreeGUI for 2 years but never thought of accessing its Library from another project. I thought of adding indexing capabilities to iTSfv via TreeGUI library. Initially thought there would be a lot of code adjustments to do but it turned out really easy.
Dim tgApp As New TreeGUI.cAdapter
tgApp.GetConfig.FolderList.Add("F:MusicKylie MinogueFever")Dim tnl As New TreeGUI.cTreeNetLib(tgApp)
tnl.IndexNow(cAdapter.IndexingMode.IN_EACH_DIRECTORY)
That's all you have to do to successfully index a folder and create a index.html. Any other custom configuration is possible upon need.
Comments