RE: Display DubDirectory/Files

2003-02-28 Thread Wagner, David --- Senior Programmer Analyst --- WGO
Shishir K. Singh wrote: Hello, Is there any existing module that can list all the subdirectories/files within a given directory? TIA Shishir You can use File::Find to pull out what you want. Has decent examples and you should be able to get what you need from that. Wags ;)

RE: Display DubDirectory/Files

2003-02-28 Thread Dan Muey
Hello, Is there any existing module that can list all the subdirectories/files within a given directory? Is this homework? You'll never learn anythign if you cheat! Any who I'll bite even though I think it's howework :: http://search.cpan.org is your friend use File::Slurp;

RE: Display DubDirectory/Files

2003-02-28 Thread Shishir K. Singh
:26 PM To: Shishir K. Singh; [EMAIL PROTECTED] Subject: RE: Display DubDirectory/Files Shishir K. Singh wrote: Hello, Is there any existing module that can list all the subdirectories/files within a given directory? TIA Shishir You can use File::Find to pull out what you want

RE: Display DubDirectory/Files

2003-02-28 Thread Shishir K. Singh
Message- From: Dan Muey [mailto:[EMAIL PROTECTED] Sent: Friday, February 28, 2003 2:27 PM To: Shishir K. Singh; [EMAIL PROTECTED] Subject: RE: Display DubDirectory/Files Hello, Is there any existing module that can list all the subdirectories/files within a given directory

Re: Display DubDirectory/Files

2003-02-28 Thread R. Joseph Newton
Shishir K. Singh wrote: I am already doing the recursive look up and it works fine. However, if it's a long hieararchy, it, it takes up some to traverse the full tree. I was curious to know if any module exist so that I can compare the speeds. If the performance is better, I can discard my