Re: Windows Directory Parsing and Deleting

2001-07-21 Thread Tim Musson
Hey Patricia, Thursday, July 19, 2001, 10:49:11 AM, my MUA believes you used Internet Mail Service (5.5.2653.19) to write: DPA> Okay I really am a newbie. This whole perl thing has confused DPA> me. (Any suggestions on clarification to my confusion of the DPA> language would be appreciated as

Re: Windows Directory Parsing and Deleting

2001-07-19 Thread Luke Bakken
File::Find use function finddepth to go through directories' contents *before* looking at the dir itself. use File::Find my $wanted = sub { #skip unless the dir contains '_vti' at the beginning unless($File::Find::dir =~ /^_vti/) { return } #if we're looking at a dir,