private string FindDescription(string path)
        {
            string infoTip        = "";
            string desktopIniPath = path + @"\Desktop.ini";

            if (!File.Exists(desktopIniPath))
            {
                return(" Desktop.ini don't exist. No note set");
            }
            else
            {
                string line = fileRead.ReadLineThatContainsValue(desktopIniPath, "InfoTip");
                infoTip = GetDataFromString(line, '=');
            }
            return(infoTip);
        }