View Single Post
  #19  
Old August 13th, 2003, 05:28 PM

gravey101 gravey101 is offline
Corporal
 
Join Date: Nov 2001
Location: Knoxville, TN
Posts: 196
Thanks: 0
Thanked 0 Times in 0 Posts
gravey101 is on a distinguished road
Default Re: OT:Is this the right forum for HTML help?

Just a way to get all filenames in a directory into a variable would be very helpful.

In perl, just use opendir and readir thus;

$directory = '/tmp/files';
@files = ();
opendir (DIR, $directory);
while ($file = readdir(DIR)) {
push @files, $file;
}
closedir(DIR);

and @files has your list of files.

[ August 13, 2003, 16:30: Message edited by: gravey101 ]
Reply With Quote