Example #1
0
        public void Snoop()
        {
            // First search videos in the paths and update if required.
            ArrayList alSearchPaths = vdb.GetSearchPaths();

            foreach (String strPath in alSearchPaths)
            {
                SearchVideos(strPath);
            }
            // Clear the non candidates.
            CheckPaths();
        }
Example #2
0
        public void Snoop()
        {
            ArrayList alSearchPaths = vdb.GetSearchPaths();

            foreach (String strPath in alSearchPaths)
            {
                SearchVideos(strPath);
            }
        }
Example #3
0
        private void Configure_Load(object sender, EventArgs e)
        {
            ArrayList alFileTypes   = vdb.GetExtensions();
            ArrayList alSearchPaths = vdb.GetSearchPaths();

            lstExtensions.Items.Clear();
            foreach (String str in alFileTypes)
            {
                lstExtensions.Items.Add(str);
            }
        }