Finding directories within a tree

2005-10-07 Thread jason_normandin
Good Afternoon I am attempting to develop a script that will parse a directory listing and return only directory names that match a given expression. It would make sense to me to use File::Find to do this but based on the dir structure I am parsing, the amount of overhead to do this is

RE: Finding directories within a tree

2005-10-07 Thread Larsen, Errin M HMMA/IT
[EMAIL PROTECTED] wrote: Good Afternoon I am attempting to develop a script that will parse a directory listing and return only directory names that match a given expression. It would make sense to me to use File::Find to do this but based on the dir structure I am parsing, the amount

Re: Finding directories within a tree

2005-10-07 Thread Adriano Ferreira
On 10/7/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Basically, I have a file structure similar to: Dir1\Dir2\Support\119404\dirx\diry Dir1\Dir3\Support\119893\dirx Dir1\Dir4\Support\14\dirx\diry\dirz . Dir1\Dir1000\Support\100858 I am simply interested in finding the

Re: Finding directories within a tree

2005-10-07 Thread Gustav Wiberg
Hi there! Isn't it possible to use dir - command? (dos-command) which is similar to ls /G - Original Message - From: [EMAIL PROTECTED] To: beginners@perl.org Sent: Friday, October 07, 2005 7:17 PM Subject: Finding directories within a tree Good Afternoon I am attempting to develop

Re: Finding directories within a tree

2005-10-07 Thread rangerrickca
directories within a tree Hi there! Isn't it possible to use dir - command? (dos-command) which is similar to ls /G - Original Message - From: [EMAIL PROTECTED] To: beginners@perl.org Sent: Friday, October 07, 2005 7:17 PM Subject: Finding directories within a tree Good Afternoon

Re: Finding directories within a tree

2005-10-07 Thread Dave Gray
On 10/7/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I am receiving numerous amounts of mail but have not filled out any questionnaires giving away any sort of information. If these letters continue being sent to me I will be forced to report you to AOL as spam and possibly other forms to

Re: RE: Finding directories within a tree

2005-10-07 Thread jason_normandin
That worked perfectley. From: Larsen, Errin M HMMA/IT [EMAIL PROTECTED] Date: 2005/10/07 Fri PM 02:03:29 EDT To: beginners@perl.org Subject: RE: Finding directories within a tree [EMAIL PROTECTED] wrote: Good Afternoon I am attempting to develop a script that will parse

Re: Finding directories within a tree

2005-10-07 Thread Dave Gray
On 10/7/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Good Afternoon I am attempting to develop a script that will parse a directory listing and return only directory names that match a given expression. It would make sense to me to use File::Find to do this but based on the dir