disk search utility that can exempt specified folders?

  • Thread starter Thread starter Dave F.
  • Start date Start date
D

Dave F.

Hi

I'm looking for a file search utility that can be told not to search specified folders.
For example to search all of my c: drive except c:\mymusic.

Could anyone recommend such a utility?

Thanks in advance
Dave F.
 
Dave F. said:
Hi

I'm looking for a file search utility that can be told not to search
specified folders.
For example to search all of my c: drive except c:\mymusic.

Could anyone recommend such a utility?

Thanks in advance
Dave F.

It depends a lot on what you mean by "searching". Do you expect
the utility to give you a list of files that are found in all but the
excluded folder(s)? If so then this command, when executed from a
command prompt, might fit the bill:

xcopy /L /s /exclude:c:\ex.txt "c:\documents and settings\df" c:\

Place this line into c:\ex.txt: c:\mymusic
In spite of its name (xcopy), the command will NOT copy any files
when used with the above switches.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top