Exemplo n.º 1
0
        /// <summary>
        /// filter a serach result object list acoording to a givven text
        /// </summary>
        /// <param name="FileList"></param>
        /// <param name="filename"></param>
        /// <returns></returns>
        public List <SearchResult> FilterList(List <SearchResult> FileList, string filename)
        {
            List <SearchResult> FilterList = new List <SearchResult>();

            foreach (SearchResult item in FileList)
            {
                if (item.FileName.ToLower().Contains(filename.ToLower()))
                {
                    WhenFileIsFoundHandler?.Invoke(item);
                    FilterList.Add(item);
                }
            }
            if (FilterList.Count == 0)
            {
                NoFielsWereFoundHandler?.Invoke();
            }
            return(FilterList);
        }
Exemplo n.º 2
0
        public List <SearchResult> SearchForFiles(string filename)
        {
            //get all the drivers on the user computer
            DriveInfo[]   DriverARR  = DriveInfo.GetDrives();
            List <string> FolderList = new List <string>();

            foreach (DriveInfo item in DriverARR)
            {
                //get all the main folders in the driver and add them to the folder list
                string[] FoldersInDriver = GetAllFoldersInPath(item.Name);
                if (FoldersInDriver == null)
                {
                    continue;
                }
                foreach (string folder in FoldersInDriver)
                {
                    FolderList.Add(folder);
                }
            }
            List <SearchResult> FileList = new List <SearchResult>();

            //get all the files--if in some case the user cant acses the folder it just pass that folder
            foreach (string item in FolderList)
            {
                try
                {
                    string[] FielsInFolder = Directory.GetFiles(item, "*.*", SearchOption.AllDirectories);
                    if (FielsInFolder == null)
                    {
                        continue;
                    }
                    if (FielsInFolder.Length == 0)
                    {
                        continue;
                    }
                    foreach (string file in FielsInFolder)
                    {
                        SearchResult SingleFile = new SearchResult
                        {
                            FileName = Path.GetFileName(file),
                            Path     = Path.GetFullPath(file)
                        };
                        FileList.Add(SingleFile);
                    }
                }
                catch
                {
                    continue;
                }
            }
            List <SearchResult> FilterList = new List <SearchResult>();

            //filter only files that contains in thier name the search param
            foreach (SearchResult item in FileList)
            {
                if (item.FileName.Contains(filename))
                {
                    WhenFileIsFoundHandler?.Invoke(item);
                    FilterList.Add(item);
                }
            }
            return(FilterList);
        }