End Google Ads 201810 - BS.net 01 --> I am creating a file list of all files in a directory, searching each subdirectory and so on.

When I come to a windows shortcut file such as "MUSIC.LNK" I would like to scan and search the
directory that it points to as well.

DirectoryInfo directory = new DirectoryInfo(PSP_Directory[Display, i] + "\\");

FileInfo[] theFiles = directory.GetFiles();
DirectoryInfo[] theSubDirectories = directory.GetDirectories();

foreach (FileInfo theFile in theFiles)