asked on May 5, 2015
I can't find a way to tap into the shortcut folder as follow:
else if (entry.IsShortcut == true)
{
Console.WriteLine(entry.Name + " is a Shortcut");
try
{
LFFolder folS = (LFFolder)db.GetEntryByID(entry.ID);
ILFCollection subContentsS = folS.GetChildren();
IterateFolder(subContentsS, db);
Console.WriteLine("Shortcut>Folder");
}
It works if the entry is a folder but not if it is a shortcut of a folder.
0
0