Re: Simple "Not" Match?
- From: "Carl Daniel [VC++ MVP]" <cpdaniel_remove_this_and_nospam@xxxxxxxxxxxxxxx>
- Date: Sat, 4 Nov 2006 07:19:47 -0800
Ben Voigt wrote:
"Carl Daniel [VC++ MVP]"
<cpdaniel_remove_this_and_nospam@xxxxxxxxxxxxxxx> wrote in message
news:%23Ik3SKj$GHA.4676@xxxxxxxxxxxxxxxxxxxxxxx
xeroxero wrote:
I have code that recursively traverses a directory and writes to a
file. I would like to ignore any directory or file that matches a
pattern that is in a string array ( '*.obj' , 'doc*.*' ). Can anyone
show an example of how to do that?
Start from here:
http://www.codeproject.com/cs/files/FileSystemEnumerator.asp
Then use a regular expression to reject items that you don't want to
include. Something like this:
using System.Text.RegularExpressions;
void SomeMethod(string path)
{
Regex reject = new Regex(@"^(.*\.obj)|(doc.*)$");
using (FileSystemEnumerator fse = new FileSystemEnumerator(path,
"*",true))
{
foreach (FileInfo fi in fse.Matches())
{
if (reject.IsMatch(fi.Name))
continue;
Unless I miss my guess this won't actually skip directories that
match...
Yes, that's true - I missed the OPs statement that he wanted to skip files
OR directories that match. To be 100% accurate applying to individual
directories:
replace the simple if (reject.IsMatch(fi.Name))
with something like...
string[] parts = fi.FullName.Split(Path.PathSeparator);
if (parts.Length < 2)
continue;
string[] names = parts[1].Split(Path.DirectorySeparatorChar);
bool matched = false;
foreach (string name in names)
{
if (reject.IsMatch(name))
{
matched = true;
break;
}
}
if (matched)
continue;
.... I'm sure with enough fiddling a regex could be constructed that handles
it all. I'm not sure using such a regex would actually be faster since it
could involve a lot of backtracking during regex matching which might take
as much time as just splitting the string up.
Of course, the best way to deal with directories in this case would be to
modify FileSystemEnumerator to also accept a list of directory
names/filespecs to exclude, so the entire visitation of a matching directory
tree would be pruned out.
-cd
.
- References:
- Simple "Not" Match?
- From: xeroxero
- Re: Simple "Not" Match?
- From: Carl Daniel [VC++ MVP]
- Re: Simple "Not" Match?
- From: Ben Voigt
- Simple "Not" Match?
- Prev by Date: Re: PowerPoint Narration
- Next by Date: RE: Property reflection
- Previous by thread: Re: Simple "Not" Match?
- Next by thread: How to activate an existing program
- Index(es):
Relevant Pages
|