Click here to Skip to main content
Click here to Skip to main content

WinSearchFile: how to search files on your PC

By , 24 Feb 2006
 

Sample Image - WinSearchFile.jpg

Introduction

WinSearchFile is a program that I developed and I usually use it to search files on my PC.

Sometimes the search engine integrated with Explorer doesn't work fine, especially when I try to find text contained into files, so I decided to build my own search program.

There are a lot of search programs available to install on your PC but this one, without indexing your data, is simple and fast enough to help you in your search.

Inside the application

WinSearchFile layout is simple and quite similar to the Explorer integrated search. It is possible to write a pattern search (wildcards admitted) and/or a text to search into file contents (you can also decide for a case sensitive search).

In the "look in" area, you have all the disks of your computer (network connection included). To obtain this list, I use the DiskCollection class developed by dmihailescu in his Get Logical Drives Information article.

/// <SUMMARY>
/// Add items for all floppy, 
/// CD and hard drives.
/// </SUMMARY>
private void LoadDisksComboBox()
{
    disksListBox.Items.Clear();

    // Try to use DiskCollection
    // retrieving drive information
    DiskCollection diskColl = new DiskCollection();
    if ( diskColl.Load() )
    {
        foreach(DiskCollection.LogicalDriveInfo diskinfo in diskColl)
        {
            disksListBox.Items.Add(diskinfo.Name.ToString() + 
                                ": "+ diskinfo.Description );

        }
    }
    else
    {
        // otherwise build a drive list checking 
        // if a root directory exists
        for (char Ch = 'A'; Ch <= 'Z'; Ch++)
        {
            string Dir = Ch + @":\";

            if (Directory.Exists(Dir))
            {
                disksListBox.Items.Add( Ch+ @":" );
            }
        }
    }
}

Application shows alerts when you check a not-ready disk.

Disk Not ready Sample Image - notready.jpg

In the WinSearchFile application, I use threads to make the same search simultaneously on different targets; I use a thread for each target drive.

/// <SUMMARY>
/// Start search
/// </SUMMARY>
/// <PARAM name="sender"></PARAM>
/// <PARAM name="e"></PARAM>
private void btnSearch_Click(object sender, System.EventArgs e)
{

    // empty thread list
    for (int i = thrdList.ItemCount()-1; i>=0; i--)
    {
        thrdList.RemoveItem(i);
    }

    // clear the file founded list
    listFileFounded.Items.Clear();
    ContainingFolder = "";

    // get the search pattern
    // or use a default
    SearchPattern = txtSearchPattern.Text.Trim();
    if (SearchPattern.Length == 0)
    {
        SearchPattern = "*.*";
    }

    // get the text to search for
    SearchForText = txtSearchText.Text.Trim();

    // clear the Dirs arraylist
    Dirs.Clear();

    // check if each selected drive exists
    foreach (int Index in disksListBox.CheckedIndices)
    {
        // chek if drive is ready
        String Dir = disksListBox.Items[Index].ToString().Substring(0,2);
        Dir += @"\";
        if (CheckExists(Dir))
        {
            Dirs.Add(Dir);
        }
    }

    // I use 1 thread for each dir to scan
    foreach (String Dir in Dirs)
    {
        Thread oT;
        string thrdName = "Thread" + ((int)(thrdList.ItemCount()+1)).ToString();
        FileSearch fs = new FileSearch(Dir, SearchPattern, 
                        SearchForText, CaseSensitive, this, thrdName);
        oT = new Thread(new ThreadStart(fs.SearchDir));

        oT.Name = thrdName;

        SearchThread st = new SearchThread();
        st.searchdir = Dir;
        st.name = oT.Name;
        st.thrd = oT;
        st.state = SearchThreadState.ready;
        thrdList.AddItem(st);
        oT.Start();
    }
}

Data about searching threads is stored in a list, and during the search process, you can see how many threads are running/ready/cancelled.

Searching Sample Image - main2.jpg

Threads use the FileSearch class to do their work. To update controls or data structures on main threads, use delegate functions. I defined a delegate function for the AddListBoxItem method:

/// <SUMMARY>
/// Delegate for AddListBoxItem
/// </SUMMARY>
public delegate void AddListBoxItemDelegate(String Text);

/// <SUMMARY>
/// Add a new item to the file founded list
/// </SUMMARY>
/// <PARAM name="Text"></PARAM>
public void AddListBoxItem(String Text)
{
    // I use Monitor to synchronize access 
    // to the file founded list
    Monitor.Enter(listFileFounded);

    listFileFounded.Items.Add(Text);

    Monitor.Exit(listFileFounded);
}

and one to update the thread state:

/// <SUMMARY>
/// Delegate for UpdateThreadStatus function
/// </SUMMARY>
public delegate void UpdateThreadStatusDelegate(String thrdName, 
                                         SearchThreadState sts);

/// <SUMMARY>
/// Store the new state of a thread
/// </SUMMARY>
/// <PARAM name="thrdName"></PARAM>
/// <PARAM name="sts"></PARAM>
public void UpdateThreadStatus(String thrdName, SearchThreadState sts)
{
    SearchThread st = thrdList.Item(thrdName);
    st.state = sts;
}

On clicking the "Stop search" button, all the running threads are cancelled using the Abort method.

/// <SUMMARY>
/// Stop searching
/// </SUMMARY>
/// <PARAM name="sender"></PARAM>
/// <PARAM name="e"></PARAM>
private void btnStop_Click(object sender, System.EventArgs e)
{
    // some threads are running
    if (InProgress)
    {
        // Abort each searching thread in running status
        // and change its status to cancelled
        for (int i= 0; i < thrdList.ItemCount(); i++)
        {
            if (((SearchThread)thrdList.Item(i)).state == 
                               SearchThreadState.running)
            {
                ((SearchThread)thrdList.Item(i)).state = 
                            SearchThreadState.cancelled;
                Thread tt;
                try
                {
                    tt = ((SearchThread)thrdList.Item(i)).thrd;
                    tt.Abort();
                }
                catch
                {
                }
            }
        }

    }
}

On double clicking on a result listbox item, WinSearchFile will open the corresponding containing folder.

Open Containing Folder - dblclick.jpg

To quick launch WinSearchFile, you can create a shortcut to it on your desktop and assign to this one a shortcut key.

Shortcut Sample Image - shortcut.jpg

Conclusion

I hope you enjoy this article.

New WinSearchFile version

The new WinSearchFile 2.0, built using Visual Studio 2005 and C# 2.0, contains the following new features:

  • Single Instance Application using code written by Eric Bergman-Terrell.
  • Search inside PDF files.
  • Regular expression searching.
  • Searching using IFilter.
  • Max directory visit depth.
  • File Creation Time or Last ACcess Time or Last Write Time searching
  • directory list to search into.
  • Save results button.

Here is a new screenshot:

Sample Image - winsearchfile20.jpg

About IFilter

User can decide to use installed IFilter to extract plaintext from files. To implement this interface I used 2 class developed by Dan Letecky.

The following code shows where I try to use IFilter to get plaintext:

public static bool FileContainsText(String FileName, 
          String SearchForText, bool CaseSensitive, 
          bool UseRegularExpression, bool UseIFilter)
{
    bool Result = (SearchForText.Length == 0);

    if (!Result)
    {
      // try to use IFilter if you have checked
      // UseIFilter checkbox
     if (Parser.IsParseable(FileName) && UseIFilter)
     {
         string content = Parser.Parse(FileName);
         // if content length > 0
         // means that IFilter works and returns the file content
         // otherwise IFilter hadn't read the file content
         // i.e. IFilter seems no to be able to extract
         // text contained in dll or exe file
         if (content.Length > 0)
         {
             Result = containsPattern(SearchForText, 
                      CaseSensitive, UseRegularExpression, content);
             return Result;
         }
      }
      // scan files to get plaintext
      // with my routines
      if (FileName.ToLower().EndsWith(".pdf"))
      {
         // search text in a pdf file
         Result = SearchInPdf(FileName, SearchForText, 
                  CaseSensitive, UseRegularExpression);
      }
      else
      {
         bool Error;
         String TextContent = GetFileContent(FileName, out Error);

         if (!Error)
         {
            Result = containsPattern(SearchForText, 
                     CaseSensitive, UseRegularExpression, TextContent);
         }
      }
    }

    return Result;
}

The following screenshot shows the about box where it's possible to get the list of installed IFilter. To get this list I used a class developed by vbAccelerator.com.

Sample Image - winsearchfile_aboutbox.jpg

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Massimo Beatini
Web Developer
Italy Italy
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralUsing Logical And / OR OperatormemberSenthilMedaz7-Sep-09 20:35 
GeneralWhy dont you extract File creation/Access time from IFiltermemberaaquib15-Apr-08 21:40 
GeneralNice jobmemberdjonio24-Oct-07 1:39 
GeneralGood Idea but shame that the GUI is not separated from the restmemberNice Life5-Jun-07 1:24 
GeneralRe: Good Idea but shame that the GUI is not separated from the restmemberInge_Octavio17-Jun-07 5:29 
GeneralRe: Good Idea but shame that the GUI is not separated from the restmemberNice Life17-Jun-07 19:55 
Generalusermemberzmrcic23-Feb-07 1:01 
AnswerRe: usermemberMassimo Beatini23-Feb-07 2:31 
GeneralRe: usermemberzmrcic23-Feb-07 2:37 
AnswerRe: usermemberMassimo Beatini23-Feb-07 3:10 
GeneralRe: usermemberzmrcic23-Feb-07 3:17 
GeneralRe: usermemberRed Flying Pig10-Jul-08 7:19 
GeneralError: Searching on 'Last access time' instead of 'Creation Time'memberLars Hellqvist6-Feb-07 15:34 
AnswerRe: Error: Searching on 'Last access time' instead of 'Creation Time'memberMassimo Beatini7-Feb-07 3:25 
Questionthe program doen't find any filemembermicheal_safian28-Sep-06 10:04 
GeneralGreat JobmemberBassam Abdul-Baki15-May-06 4:45 
Generalvery cool, but why not use flexible renamermemberDarchangel3-Mar-06 10:32 
GeneralProblem with windows explorermemberdreidemy28-Feb-06 21:14 
AnswerRe: Problem with windows explorermemberMassimo Beatini28-Feb-06 21:34 
GeneralRe: Problem with windows explorermemberJason Barry26-Aug-08 9:47 
GeneralSome improvementmemberOleg Shilo22-Feb-06 11:34 
AnswerRe: Some improvementmemberMassimo Beatini22-Feb-06 22:32 
Generalre: Explorer search doesn't always workmembergrundt22-Feb-06 10:09 
GeneralRe: re: Explorer search doesn't always workmemberThe_Mega_ZZTer22-Feb-06 14:38 
GeneralRe: re: Explorer search doesn't always workmembermahendren27-Feb-06 18:41 
GeneralConsider IFilter integrationmembervektuz22-Feb-06 9:05 
AnswerRe: Consider IFilter integrationmemberMassimo Beatini25-Feb-06 6:31 
GeneralSome nice features to include ...membermalharone8-Feb-06 4:57 
AnswerRe: Some nice features to include ...memberMassimo Beatini22-Feb-06 21:00 
Generalwhy only c#... why not javamemberyatresh21-Jan-06 22:28 
GeneralRe: why only c#... why not javamemberColin Angus Mackay21-Jan-06 22:58 
Generalhow i can use your codesmemberyatresh22-Jan-06 9:48 
AnswerRe: how i can use your codesmemberMassimo Beatini5-Feb-06 8:43 
GeneralAiuto Massimomembersat0420-Dec-05 20:01 
AnswerRe: Aiuto MassimomemberMassimo Beatini8-Jan-06 22:45 
Generalbool for Recursive Folder searchmemberpxp12-Aug-05 5:41 
GeneralSimple modifications to search inside Pdf files (final)sussMassimo Beatini22-Jun-05 23:19 
GeneralSimple modifications to search inside Pdf filessussMassimo Beatini22-Jun-05 5:20 
GeneralRe: Simple modifications to search inside Pdf filesmemberage_getty22-Jun-05 22:34 
GeneralRe: Simple modifications to search inside Pdf filessussMassimo Beatini22-Jun-05 22:59 
QuestionHow To Search Text In PDF Files?memberXiaoYu21-Jun-05 15:48 
AnswerRe: How To Search Text In PDF Files?sussMassimo Beatini22-Jun-05 5:24 
GeneralIt doesnt find anythingmemberFoxandxss13-Jun-05 11:24 
GeneralRe: It doesnt find anythingsussMassimo Beatini13-Jun-05 21:40 
GeneralRe: It doesnt find anythingmemberFoxandxss13-Jun-05 22:24 
GeneralRe: It doesnt find anythingsussMassimo Beatini13-Jun-05 22:31 
GeneralRe: It doesnt find anythingmemberFoxandxss13-Jun-05 22:38 
GeneralRe: It doesnt find anythingsussMassimo Beatini13-Jun-05 23:28 
GeneralRe: It doesnt find anythingmemberFoxandxss13-Jun-05 23:53 
GeneralRe: It doesnt find anythingsussMassimo Beatini13-Jun-05 23:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130617.1 | Last Updated 24 Feb 2006
Article Copyright 2005 by Massimo Beatini
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid