Example #1
0
        /// <summary>
        /// Scan the entire iTunes library directory structure, deleting empty
        /// directories.  These may have been result of reorganizing the library
        /// using iTunes, which tends to leave these directories behind.
        /// </summary>

        public void ScanEmptyFolders()
        {
            if (!disabled.Contains(Resx.I_ScanEmptyDirectories))
            {
                IScanner scanner = new EmptyScanner(controller, catalog);
                AddScanner(scanner, EmptyScannerPriority);
            }
        }
Example #2
0
 /// <summary>
 /// Scan the entire iTunes library directory structure, deleting empty
 /// directories.  These may have been result of reorganizing the library
 /// using iTunes, which tends to leave these directories behind.
 /// </summary>
 public void ScanEmptyFolders()
 {
     if (!disabled.Contains(Resx.I_ScanEmptyDirectories))
     {
         IScanner scanner = new EmptyScanner(controller, catalog);
         AddScanner(scanner);
     }
 }
Example #3
0
 public void EmptyScanner()
 {
     EmptyScanner scanner = new EmptyScanner(controller, catalog);
     scanner.Execute();
 }