RE: directory listing of Computer on win32

2012-03-14 Thread Brian Raven
From: perl-win32-users-boun...@listserv.activestate.com [mailto:perl-win32-users-boun...@listserv.activestate.com] On Behalf Of Daniel Burgaud Sent: 13 March 2012 22:53 To: Perl-Win32-Users Subject: directory listing of Computer on win32 Hi All, I am clueless how to do a directory list

RE: directory listing of Computer on win32

2012-03-14 Thread Steven Manross
System: FAT32 From: perl-win32-users-boun...@listserv.activestate.com [mailto:perl-win32-users-boun...@listserv.activestate.com] On Behalf Of Daniel Burgaud Sent: Tuesday, March 13, 2012 3:53 PM To: Perl-Win32-Users Subject: directory listing of Computer on win32 Hi

Re: directory listing of Computer on win32

2012-03-14 Thread Jenda Krynicky
I am clueless how to do a directory list starting at the very root Computer which includes all drives. What I am doing to get a directory tree is this: my $directory = ; opendir DIR, $directory; my @files = readdir DIR; closedir DIR; But it only start at one drive - not all

directory listing of Computer on win32

2012-03-13 Thread Daniel Burgaud
Hi All, I am clueless how to do a directory list starting at the very root Computer which includes all drives. What I am doing to get a directory tree is this: my $directory = ; opendir DIR, $directory; my @files = readdir DIR; closedir DIR; But it only start at one drive - not all