Beispiel #1
0
        public void FindNewShows()
        {
            //Shows.Clear();
            Shows = new NewShowInfoList(); // better than clear is its bound to from a dif thread

            // Lets list all the shows and check for new shows
            foreach (var dir in Directory.GetDirectories(ShowFolder))
            {
                // find on theTVDB
                processShow(Path.GetFileName(dir));
            }
        }
Beispiel #2
0
 public NewShows()
 {
     Shows = new NewShowInfoList();
 }