public static void pickChoice()
 {
     Chooser c = new Chooser();
     c.ShowDialog();
     if (c.DialogResult == DialogResult.OK)
     {
         openFolder(c.result.folderPath);
         //remove the items as we have picked it, and want to rescan it next time.
         cache.removeCacheData(c.result.folderPath);
     }
 }
Esempio n. 2
0
        public static void pickChoice()
        {
            Chooser c = new Chooser();

            c.ShowDialog();
            if (c.DialogResult == DialogResult.OK)
            {
                openFolder(c.result.folderPath);
                //remove the items as we have picked it, and want to rescan it next time.
                cache.removeCacheData(c.result.folderPath);
            }
        }